all repos — homestead @ 2844d0f55e08e6898d5e8ec89f8f58fe8857d815

Code for my website

domain/content/publisher/templates/index.go (view raw)

1
2
3
4
5
6
7
8
9
10
package templates

import (
	g "alin.ovh/gomponents"
	base "alin.ovh/homestead/domain/web/templates"
)

func IndexPage(site base.SiteSettings, page base.PageSettings) g.Node {
	return Layout(site, page, g.Text("Index Page"))
}