style(taxonomy): improve indentation for better readability

This commit is contained in:
Aditya Telange
2026-05-03 13:07:08 +05:30
parent 0d26c357e1
commit 2a980c81da
+8 -8
View File
@@ -13,14 +13,14 @@
<ul class="terms-tags"> <ul class="terms-tags">
{{- $type := .Type }} {{- $type := .Type }}
{{- range $key, $value := .Data.Terms.Alphabetical }} {{- range $key, $value := .Data.Terms.Alphabetical }}
{{- $name := .Name }} {{- $name := .Name }}
{{- $count := .Count }} {{- $count := .Count }}
{{- with site.GetPage (printf "/%s/%s" $type $name) }} {{- with site.GetPage (printf "/%s/%s" $type $name) }}
<li> <li>
<a href="{{ .Permalink }}">{{ .LinkTitle }} <sup><strong><sup>{{ $count }}</sup></strong></sup> </a> <a href="{{ .Permalink }}">{{ .LinkTitle }} <sup><strong><sup>{{ $count }}</sup></strong></sup> </a>
</li> </li>
{{- end }} {{- end }}
{{- end }} {{- end }}
</ul> </ul>