Skip to content

Instantly share code, notes, and snippets.

@adeydas
Created April 8, 2018 08:34
Show Gist options
  • Select an option

  • Save adeydas/a558f121521437bbf389d421a4aa638f to your computer and use it in GitHub Desktop.

Select an option

Save adeydas/a558f121521437bbf389d421a4aa638f to your computer and use it in GitHub Desktop.
{{ $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>&nbsp;</span>
{{end}}
{{end}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment