views/onts.html (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
{{ template "header.html" . }} <main> <div class="info"> <p>ontologies of interest {{ $firstrune := .FirstRune }} {{ $letter := 0 }} <ul> {{ range .Onts }} {{ if not (eq $letter (call $firstrune .Name)) }} {{ $letter = (call $firstrune .Name) }} <li><p> {{ end }} <span class="wsnowrap"><a href="/o/{{ .Name }}">#{{ .Name }}</a> ({{ .Count }})</span> {{ end }} </ul> </div> </main> |