simple-hugo

A simple Hugo theme I use for my website
git clone git://git.christianermann.dev/simple-hugo
Log | Files | Refs | README | LICENSE

terms.html (243B)


      1 {{ define "main" }}
      2     <h1>Tags</h1>
      3     <ul>
      4         {{ range .Paginator.Pages.ByTitle }}
      5             <li><a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a></li>
      6         {{ end }}
      7     </ul>
      8     {{ partial "pagination.html" . }}
      9 {{ end }}