Initialisierung
This commit is contained in:
parent
4084518848
commit
6dd9fa38f6
116 changed files with 17349 additions and 2 deletions
20
layouts/partials/metafooter.html
Normal file
20
layouts/partials/metafooter.html
Normal 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 }}
|
||||
|
||||
|
||||
|
||||
{{ 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 }}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue