Rename a lot of classes from post- to page-

This commit is contained in:
2023-03-23 12:42:13 -05:00
parent 0e0195afd1
commit 553d1584f4
24 changed files with 84 additions and 92 deletions

View File

@ -0,0 +1,11 @@
{{ with (.GetTerms "categories") }}
{{ $categories := slice }}
{{ range . }}
{{ $categories = $categories | append (printf `<a href="%s">%s</a>` .Permalink .LinkTitle) }}
{{ end }}
<div class="page-metadata-section categories" aria-label="{{ i18n "aria_post_meta_categories" }}">
{{ partial "icon.html" "folder" }}
{{ delimit $categories ", " }}
</div>
{{ end }}