jlelse
/
Indieroad
Archived
1
Fork 0
This repository has been archived on 2020-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
Indieroad/layouts/partials/related.html

13 lines
404 B
HTML
Raw Normal View History

2019-10-09 18:35:33 +00:00
{{ $related := .Site.RegularPages.Related . | first 5 }}
{{ with $related }}
<div class="related">
<span class="caption">{{ T "related" }}</span>
<ul class="related-list">
{{ range . }}
2020-04-11 17:56:32 +00:00
<li class="item"><a class="link" href="{{ .RelPermalink }}"><p class="post-title">
{{ with .Title }}{{ . }}{{ else }}{{ .Summary | truncate 60 }}{{ end }}
</p></a></li>
2019-10-09 18:35:33 +00:00
{{ end }}
</ul>
</div>
{{ end }}