aboutsummaryrefslogtreecommitdiffstats
path: root/template.go
blob: ff69756d891028758c5cb6cd4e124e0ffd944f57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package main

type templateData struct {
	SiteTitle     string
	StylesheetUrl string
	Nav           []navItem
	Content       []string
}

func generatePages(pages map[string]page, nav []navItem, cfg config) () {

}