hugo-cms/templates/index.html
2025-03-29 21:54:14 +11:00

12 lines
212 B
HTML

<h1>Sites</h1>
<ul>
{{range .sites}}
<li><a href="/sites/{{.ID}}/posts">{{ .Name }}</a></li>
{{end}}
</ul>
<form method="post" action="/sites">
<input type="submit" value="Create Site">
</form>