diff options
author | mattkae <mattkae@protonmail.com> | 2023-01-22 18:59:38 -0500 |
---|---|---|
committer | mattkae <mattkae@protonmail.com> | 2023-01-22 18:59:38 -0500 |
commit | 22c7d2cfa31d83eb81c5ab397e287c2212691e71 (patch) | |
tree | 38ba6db608beff7cbc1ed476531eb02befd44942 /generator | |
parent | 64a8d78225e6539ca25374596fe5de44e6252a62 (diff) |
WIP on Wind Fields, and updated resume
Diffstat (limited to 'generator')
-rw-r--r-- | generator/main.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/generator/main.go b/generator/main.go new file mode 100644 index 0000000..d6f5c73 --- /dev/null +++ b/generator/main.go @@ -0,0 +1,24 @@ +package main + +import "fmt" + +/* + + Form of the static site generator: + 1. Define a list of static items + 2. Define a global index.css + 3. Each static site item has a content.html file + 4. Each static site item has a content.css file + 5. Each static site item can have a content.js file + 6. Each static site item can have an optional build + 7. There will be some built-in blogging functionality if we do it right +*/ + +func main() { + doWork() +} + +func doWork() { + fmt.Println("Hello, world!") + +} |