initial checkin

This commit is contained in:
Pim van Pelt
2022-09-04 13:08:42 +02:00
commit 45928abf52
129 changed files with 10172 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{{ with .Params.Categories }}
<span class="blog-taxonomy-info"> &nbsp; | &nbsp; Categories:
{{ $sort := sort . }}
{{ $links := apply $sort "partial" "post-category-link" "." }}
{{ $clean := apply $links "chomp" "." }}
{{ delimit $clean ", " }}
</span>
{{ end }}
{{ with .Params.Tags }}
<span class="blog-taxonomy-info"> &nbsp; | &nbsp; Tags:
{{ $sort := sort . }}
{{ $links := apply $sort "partial" "post-tag-link" "." }}
{{ $clean := apply $links "chomp" "." }}
{{ delimit $clean ", " }}
</span>
{{ end }}