Created
April 8, 2018 08:34
-
-
Save adeydas/a558f121521437bbf389d421a4aa638f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {{ $paginator := .Paginate (where .Data.Pages "Type" "posts") }} | |
| {{if lt (len $paginator.Pages) 1}} | |
| <h1>All Tags</h1> | |
| {{ range $.Site.Taxonomies.tags.ByCount }} | |
| <span> | |
| <a href="/tags/{{ .Name }}"> {{ .Name }} <small>({{ .Count }})</small></a> | |
| </span> | |
| <span> </span> | |
| {{end}} | |
| {{end}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment