mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-06 00:33:39 +00:00
14 lines
372 B
HTML
14 lines
372 B
HTML
{{ range $pageIndex, $page := .Pages }}
|
|
<article class="post">
|
|
<div class="post-header">
|
|
<div class="post-meta">
|
|
{{- with $page.Date -}}
|
|
<span>{{ .Format "2006-01-02" }}</span>
|
|
{{- end -}}: <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
{{ end }}
|
|
|
|
{{ partial "pagination.html" . }}
|