Line | |
---|
1 | {{ define "main" }} |
---|
2 | |
---|
3 | <div class="content"> |
---|
4 | <div class="article-wrapper u-cf single"> |
---|
5 | <a class="bubble" href="{{ "/categories/" | relLangURL}}"> |
---|
6 | <i class="fa fa-fw fa-list"></i> |
---|
7 | </a> |
---|
8 | |
---|
9 | <article class="article"> |
---|
10 | <div class="content"> |
---|
11 | <h3>{{ i18n "categories" }}</h3> |
---|
12 | <hr> |
---|
13 | <ul id="all-categories"> |
---|
14 | {{ range $name, $taxonomy := .Site.Taxonomies.categories }} |
---|
15 | <li><a href="{{ "/categories/" | relLangURL }}{{ $name | urlize }}">{{ $name | humanize }} ({{ $taxonomy.Count }})</a></li> |
---|
16 | {{ end }} |
---|
17 | </ul> |
---|
18 | </div> |
---|
19 | </article> |
---|
20 | </div> |
---|
21 | </div> |
---|
22 | {{ end }} |
---|
Note: See
TracBrowser for help on using the repository browser.