blog.spyhoodle.me/themes/developer/layouts/_default/list.html
2023-04-07 23:19:05 +01:00

23 lines
401 B
HTML

{{ partial "header.html" . }}
<h1>{{ .Title }}</h1>
<hr>
{{ .Content }}
{{ range.Data.Pages }}
<ul>
<article class="post-snippet">
<li>
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
{{ .Date.Format "2006-01-02" }}
</time>
-
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
</article>
</ul>
{{ end }}
{{ partial "footer.html" . }}