blog.spyhoodle.me/themes/developer/layouts/_default/list.html

23 lines
394 B
HTML
Raw Permalink Normal View History

2023-04-07 23:19:05 +01:00
{{ partial "header.html" . }}
2023-11-26 16:05:31 +00:00
<h1>Posts</h1>
2023-04-07 23:19:05 +01:00
<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" . }}