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.
35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
{{ define "main" }}
|
|
<section>
|
|
<header>
|
|
<div class="row text-center justify-content-center">
|
|
<div class="col" style="max-width: 100ch">
|
|
<h1 class="display-5 fw-bold">
|
|
{{ .Title }}
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
{{ $p := .Paginate (.Pages.ByDate.Reverse.GroupByDate "January 2006") }}
|
|
<section>
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="mx-auto text-center" style="max-width: 100ch">
|
|
{{ range $p.PageGroups }}
|
|
<h5>{{ .Key }}</h5>
|
|
{{ range .Pages }}
|
|
<p>
|
|
<a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
|
|
{{- if .Description -}}
|
|
<br/>
|
|
{{- .Description | markdownify -}}
|
|
{{- end -}}
|
|
</p>
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</section>
|
|
{{ end }}
|