Switch to IPng theme
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-08-13 02:25:52 +02:00
parent fc1c0fdbb4
commit ebf34c65a1
78 changed files with 275 additions and 903 deletions

View File

@ -0,0 +1,16 @@
{{- 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 ", " | safeHTML }}
</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 ", " | safeHTML }}
</span>
{{- end -}}