External Links
Updated on
Last site update: 1 Sep 2025
In the frontmatter:
1extlinks:
2- ["https://gohugo.io/templates/pagination/", Official docs on Pagination]
Which is accessed by the template partial extlinks.html:
1{{ with .Params.extlinks }}
2<ul>
3 {{ range . }}
4 <li>
5 <a href="{{ index . 0 }}">{{ index . 1 }}</a>
6 </li>
7 {{ end }}
8</ul>
9{{ end }}