Files
website/blog/layouts/list.html
T
2025-10-30 02:56:45 +01:00

21 lines
434 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
<ul>
{{ range .Pages }}
<div class="blogpost">
<div class="blogpost-content">
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
<span>{{ .Date | time.Format "January 2, 2006" }}</span>
</div>
<div>
<span>{{ .Description }}</span>
</div>
</div>
{{ end }}
</ul>
{{ end }}