1
Fork 0
theorangeone.net-legacy/layouts/partials/related-content.html

22 lines
608 B
HTML
Raw Permalink Normal View History

{{ 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">
<h2 class="m-0 h3">Related content</h2>
<div class="row">
{{ range $related }}
<div class="{{ $col }} mt-4">
<h3 class="h5"><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
{{ partial "content-details.html" . }}
</div>
{{ end }}
</div>
</div>
{{ end }}
{{ end }}