source: tanzpartie-hugo/themes/bilberry-hugo-theme/layouts/_default/category.terms.html @ 16971

Last change on this file since 16971 was 16971, checked in by Henrik Bettermann, 2 years ago
File size: 740 bytes
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.