2020-07-24 22:44:08 +01:00
|
|
|
{{ 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">
|
2021-12-27 10:56:30 +00:00
|
|
|
<h2 class="m-0 h3">Related content</h2>
|
2020-07-24 22:44:08 +01:00
|
|
|
<div class="row">
|
|
|
|
{{ range $related }}
|
|
|
|
<div class="{{ $col }} mt-4">
|
2021-12-27 10:56:30 +00:00
|
|
|
<h3 class="h5"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
2020-07-24 22:44:08 +01:00
|
|
|
{{ partial "content-details.html" . }}
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|