You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
852 B
HTML
29 lines
852 B
HTML
{{ partial "head.html" . }}
|
|
<body>
|
|
{{ partial "nav.html" . }}
|
|
{{ partial "profile.html" . }}
|
|
|
|
|
|
<section id="wrapper" class="tags">
|
|
<div class="page-tags">
|
|
<ul>
|
|
{{ $data := .Data }}
|
|
{{ range $key, $value := .Data.Terms.ByCount }}
|
|
{{ if ($value.Name) }}
|
|
<li>
|
|
<a href="{{ $.Site.BaseURL }}{{ $data.Plural }}/{{ $value.Name | urlize }}">
|
|
{{ $value.Name | upper }} <span>({{ $value.Count }})</span>
|
|
</a>
|
|
|
|
</li>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
</section>
|
|
|
|
{{ partial "js.html" . }}
|
|
</body>
|
|
</html>
|