barkeep: initial commit
1 file changed, 10 insertions(+), 0 deletions(-)
changed files
A internal/publisher/templates/index.go
@@ -0,0 +1,10 @@ +package templates + +import ( + g "go.alanpearce.eu/gomponents" + base "go.alanpearce.eu/homestead/templates" +) + +func IndexPage(site base.SiteSettings, page base.PageSettings) g.Node { + return Layout(site, page, g.Text("Index Page")) +}