Initialisierung

This commit is contained in:
mdn 2022-11-13 20:52:45 +01:00
parent 4084518848
commit 6dd9fa38f6
116 changed files with 17349 additions and 2 deletions

View file

@ -0,0 +1,20 @@
{{ with .Params.tags }}
<i data-feather="tag"></i>
<i class="bi bi-tag"></i> <!-- TODO: umstellen auf bootstrap-icons??? -->
{{ range . }}
{{ $href := print (absURL "tags/") (urlize .) }}
<a class="btn btn-sm btn-outline-dark tag-btn" href="{{ $href }}">{{ . }}</a>
{{ end }}
{{ end }}
&nbsp;
{{ with .Params.categories }}
<!-- list -->
<i data-feather="award"></i>
{{ range . }}
{{ $href := print (absURL "categories/") (urlize .) }}
<a class="btn btn-sm btn-outline-dark tag-btn" href="{{ $href }}">{{ . }}</a>
{{ end }}
{{ end }}