jlelse
/
Indiego
Archived
1
Fork 0
This repository has been archived on 2020-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Indiego/layouts/tags/terms.html

12 lines
337 B
HTML
Raw Normal View History

2020-05-24 07:30:26 +00:00
{{ define "main" }}
<main>
{{ with .Title }}<h1>{{ . }}</h1>{{ end }}
{{ if not .Params.nometa }}{{ partial "list_meta" . }}{{ end }}
<p>
{{ range (.Paginate ( .Pages.ByTitle ) 1000).Pages }}
<a href="{{ .RelPermalink }}">{{ .Title }}</a><sup>{{ len .Pages }}</sup>
{{ end }}
</p>
</main>
{{ partial "pagination" . }}
{{ end }}