grannysmith-technical/layouts/partials/see_also.html

11 lines
263 B
HTML
Raw Normal View History

{{ if .Params.see_also }}
<div class="see_also">
<h3>See also: </h3>
<ul>
{{ range .Params.see_also }}
<li><a href="{{ (site.GetPage .).Permalink }}">{{ (site.GetPage . ).LinkTitle }}</a></li>
{{ end }}
</ul>
</div>
{{ end }}