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.
15 lines
475 B
HTML
15 lines
475 B
HTML
{{ define "main" }}
|
|
{{ partial "profile.html" . }}
|
|
<section id="tags">
|
|
{{ $data := .Data }}
|
|
{{ range $key, $value := .Data.Terms.ByCount }}
|
|
{{ if ($value.Name) }}
|
|
<span class="tag">
|
|
<a href="{{ "tags/" | relURL }}{{ $value.Name | urlize }}">
|
|
{{ $value.Name | upper }} <span>({{ $value.Count }})</span>
|
|
</a>
|
|
</span>
|
|
{{ end }}
|
|
{{ end }}
|
|
</section>
|
|
{{ end }} |