all repos — homestead @ ee0b56f1dd376a5f9756bad6a6190d888137534f

Code for my website

internal/publisher/templates/index.go (view raw)

1
2
3
4
5
6
7
8
9
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"))
}