Files
doserver.top/templates/blog.html
2025-06-28 16:46:52 +01:00

20 lines
392 B
HTML

{{ template "_style.html" .}}
{{ template "_header.html" .}}
{{ template "_content_start.html" .}}
<h1>{{ .Title }}</h1>
<ul>
{{ range $.Posts }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a><br>
<small>{{ .DatePublished.Format "January 2, 2006" }}</small>
</li>
{{ end }}
</ul>
{{ .Content }}
{{ template "_content_end.html" .}}
{{ template "_footer.html" .}}