hugo-cms/templates/index.html

12 lines
212 B
HTML
Raw Normal View History

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