aboutsummaryrefslogtreecommitdiff
path: root/i18n_views/onts.html
blob: 4a208c83808d4345f114e8b37ee2a2b62907aa1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ template "header.html" . }}
<main>
<div class="info">
<p>{{ .i18n.Onts }}
{{ $letter := 0 }}
<ul>
{{ range .Onts }}
{{ if not (eq $letter (index .Name 0)) }}
{{ $letter = (index .Name 0) }}
<li><p>
{{ end }}
<span style="white-space: nowrap;"><a href="/o/{{ .Name }}">#{{ .Name }}</a> ({{ .Count }})</span>
{{ end }}
</ul>
</div>
</main>