hugo-theme-zzo/layouts/partials/body/related.html

13 lines
395 B
HTML
Raw Normal View History

2019-11-04 13:09:44 +00:00
<div class="related">
{{ $related := .Site.RegularPages.Related . | first 5 }}
{{ with $related }}
<h1 class="title is-1 related-title">{{ i18n "single-related" }}</h1>
<ul class="related-ul">
{{ range . }}
<li>
<a href="{{ .RelPermalink }}" class="title is-5 related-link">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ end }}
</div>