Search Apps Documentation Source Content File Folder Download Copy

home.gno

0.22 Kb ยท 14 lines
 1package home
 2
 3import "gno.land/r/leon/hof"
 4
 5const staticHome = `# morgan's (gn)home
 6
 7- [๐Ÿ“ sign my guestbook](/r/morgan/guestbook)
 8`
 9
10func init() { hof.Register() }
11
12func Render(path string) string {
13	return staticHome
14}