Add pagination of articles; Swap date and article title in the list

This commit is contained in:
2024-08-05 00:17:34 +02:00
parent d6c0ee71b1
commit 4230fd9acc
2 changed files with 2 additions and 1 deletions

View File

@ -17,7 +17,7 @@ Heres a sitemap of informational articles and papers in reversed chronologica
<ul>
{{- range $pages.Pages -}}
<li><a href="{{ .Permalink }}">{{.Title}} (<time>{{ .Date.Format "2006-01-02"}}</time>)</a></li>
<li><a href="{{ .Permalink }}"><time>{{ .Date.Format "2006-01-02"}}</time> - {{.Title}}</a></li>
{{- end -}}
</ul>