Search Apps Documentation Source Content File Folder Download Copy Actions Download

home.gno

0.16 Kb ยท 13 lines
 1package piagno
 2
 3import (
 4	"gno.land/p/moul/md"
 5)
 6
 7func Render(path string) string {
 8	out := ""
 9	out += md.H1("vik000/home")
10	out += "boo far\n\n"
11
12	return out
13}