mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-13 01:02:10 +00:00
12 lines
288 B
HTML
12 lines
288 B
HTML
|
<h3>Posts</h3>
|
||
|
<ul id="posts">
|
||
|
{{- range where site.RegularPages "Type" "in" site.Params.mainSections }}
|
||
|
<li>
|
||
|
<a href="{{ .Permalink }}">
|
||
|
{{ .Title }}
|
||
|
<small><time>{{ .Date.Format "Jan 2, 2006" }}</time></small>
|
||
|
</a>
|
||
|
</li>
|
||
|
{{- end }}
|
||
|
</ul>
|