hugo-cms/templates/index.html

12 lines
212 B
HTML
Raw Normal View History

2025-03-29 21:54:14 +11:00
<h1>Sites</h1>
2025-01-27 10:19:31 +11:00
2025-03-29 21:54:14 +11:00
<ul>
{{range .sites}}
<li><a href="/sites/{{.ID}}/posts">{{ .Name }}</a></li>
{{end}}
</ul>
2025-02-01 10:56:59 +11:00
2025-01-27 10:19:31 +11:00
<form method="post" action="/sites">
<input type="submit" value="Create Site">
</form>