Jake Howard
7dd9793f03
Couldn't get it showing pages in the past, because Hugos docs on what the default are appear to be incorrect
21 lines
594 B
HTML
21 lines
594 B
HTML
{{ if .Section }}
|
|
{{ $pages := where .Site.RegularPages "Section" .Section }}
|
|
|
|
{{ $related := ($pages.Related .) | first 3 }}
|
|
|
|
{{ if $related }}
|
|
{{ $col := printf "col-md-%d" (div 12 (len $related)) }}
|
|
|
|
<div class="container mt-5 text-center">
|
|
<h3 class="m-0">Related content</h3>
|
|
<div class="row">
|
|
{{ range $related }}
|
|
<div class="{{ $col }} mt-4">
|
|
<h5><a href="{{ .RelPermalink }}">{{ .Title }}</a></h5>
|
|
{{ partial "content-details.html" . }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|