.gitea
assets
content
data
i18n
layouts
_default
abiturienten
about
anmeldeformular
anmeldung
author
begabte
cantorfora
cantorpreis
forms
ganztagsangebote
kontakt
pages
partials
blog-sidebar.html
card-btn-ni.html
card-icon.html
collapsible.html
download.html
filter-controls.html
footer.html
head.html
header-cl-url.html
header.html
info.html
modal.html
opengraph.html
page-header.html
pagination.html
preloader.html
termin.html
twitter.html
projektwoche
schulchronik
shortcodes
superhaufen
termine
wettbewerbe
404.html
index.html
robots.txt
static
.gitignore
LICENSE
config.yml
21 lines
639 B
HTML
21 lines
639 B
HTML
|
<div class="row gta-cat">
|
||
|
<div class="col-lg-12">
|
||
|
<ul class="list-inline text-center filter-controls mb-5">
|
||
|
<li class="list-inline-item m-3 text-uppercase active" data-filter="all">{{ i18n "all" }}</li>
|
||
|
{{ $categories := slice }}
|
||
|
{{ range .Data.Pages }}
|
||
|
{{ $categories = $categories | append .Params.category }}
|
||
|
{{ end }}
|
||
|
{{ range ( $categories | uniq ) }}
|
||
|
<li class="list-inline-item m-3 text-uppercase" data-filter="{{ . | urlize }}">{{ . | humanize }}</li>
|
||
|
{{ end }}
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
<noscript>
|
||
|
<style>
|
||
|
.gta-cat {
|
||
|
display: none;
|
||
|
}
|
||
|
</style>
|
||
|
</noscript>
|