blob: d6f5c7372a6113109e79fbd308061328f5b1cdb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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!")
}
|