Rename theme to 'ipng'

This commit is contained in:
2024-08-04 21:42:06 +02:00
parent 0567f0c6e3
commit 1f8420e2d7
70 changed files with 1 additions and 1 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 ", " | 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 }}