redstrate.com/themes/red/layouts/partials/related.html

11 lines
303 B
HTML
Raw Normal View History

2023-04-13 17:19:53 -04:00
{{ with .Site.RegularPages.Related . | first 5 }}
{{ $.Scratch.Set "header-type" "h3" }}
{{ $.Scratch.Set "header-name" "See Also" }}
{{ partial "fake-heading.html" $ }}
2022-12-27 22:34:31 -05:00
<ul>
{{ range . }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}