hugo

Fork of github.com/gohugoio/hugo with reverse pagination support

git clone git://git.shimmy1996.com/hugo.git

related.html (198B)

    1 {{ $related := .Site.RegularPages.Related . | first 5 }}
    2 {{ with $related }}
    3 <h2>See Also</h2>
    4 <ul>
    5 	{{ range . }}
    6 	<li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
    7 	{{ end }}
    8 </ul>
    9 {{ end }}