You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
607 B
HTML
23 lines
607 B
HTML
{{ if .Pages }}
|
|
<section>
|
|
{{ $p := .Paginate (.Pages.ByDate.Reverse.GroupByDate "January 2006") }}
|
|
{{ range $p.PageGroups }}
|
|
<h5 class="text-center">{{ .Key }}</h5>
|
|
{{ range .Pages }}
|
|
<p class="text-center">
|
|
<a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
|
|
{{ with .Description }}
|
|
<br>
|
|
{{ . | markdownify }}
|
|
{{ end }}
|
|
</p>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ if or $p.HasPrev $p.HasNext }}
|
|
<div class="d-flex justify-content-center">
|
|
{{ partial "paige-pagination.html" . }}
|
|
</div>
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|