1
0
mirror of https://github.com/alexandrev/xslt-lab.git synced 2026-09-22 05:33:16 +00:00
Files
xslt-lab/site/layouts/partials/related-posts.html
T

13 lines
470 B
HTML

{{- $related := first 4 (where (where .Site.RegularPages "Section" "posts") "Permalink" "ne" .Permalink) -}}
{{- if $related -}}
<aside class="related-posts">
<h3>Related articles</h3>
<ul>
{{- range $related }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{- end }}
</ul>
<p class="related-cta">Try the examples in <a href="https://xsltplayground.com">XSLT Playground</a> — free online XSLT editor and tester.</p>
</aside>
{{- end -}}