binario/layouts/partials/related.html
vimux ad7478c905
Add related param
It is possible to turn on/off related content block
2018-11-15 09:11:46 -05:00

11 lines
No EOL
373 B
HTML

{{ $related := .Site.RegularPages.Related . | first 5 }}
{{ if and ($related) (.Param "related") }}
<div class="related block">
<h3 class="related__title">{{ T "related_title" }}</h3>
<ul class="related__list">
{{ range $related }}
<li class="related__item"><a class="related__link" href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
</div>
{{ end }}