10 lines
303 B
HTML
10 lines
303 B
HTML
{{ with .Site.RegularPages.Related . | first 5 }}
|
|
{{ $.Scratch.Set "header-type" "h3" }}
|
|
{{ $.Scratch.Set "header-name" "See Also" }}
|
|
{{ partial "fake-heading.html" $ }}
|
|
<ul>
|
|
{{ range . }}
|
|
<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|