mirror of
https://github.com/davegallant/davegallant.github.io.git
synced 2025-08-05 16:23:39 +00:00
26 lines
649 B
HTML
26 lines
649 B
HTML
{{ range $pageIndex, $page := .Pages }}
|
|
<article class="post">
|
|
<div class="post-header">
|
|
<h2>
|
|
<a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
|
|
</h2>
|
|
{{ partial "post-meta.html" (dict "page" . "pageIndex" $pageIndex) }}
|
|
</div>
|
|
|
|
<div class="post-content">
|
|
{{ with .Description }}
|
|
{{ . }}
|
|
{{ else }}
|
|
{{ .Summary }}
|
|
{{ if .Truncated }}
|
|
<div class="post-content__read-more">
|
|
<a href="{{ .RelPermalink }}">Read more ></a>
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</article>
|
|
{{ end }}
|
|
|
|
{{ partial "pagination.html" . }}
|