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

11 lines
405 B
HTML

{{ $related := .Site.RegularPages.Related . | first 5 }}
{{ with $related }}
<details class="fake-p">
<summary><b>{{ T "related" }}</b></summary>
<ul>
{{ range . }}
<li><a href="{{ .RelPermalink }}">{{ with .Title }}{{ . }}{{ else }}{{ .Summary | truncate 60 }}{{ end }}</a> <i>{{.Date.Format ( .Site.Params.dateformat | default "January 02, 2006")}}</i></li>
{{ end }}
</ul>
</details>
{{ end }}