mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-25 07:48:54 +00:00
📝 Fix: fix typo
This commit is contained in:
@@ -84,7 +84,7 @@
|
||||
{{- if $tagTerms -}}
|
||||
{{- dict "Class" "fa-solid fa-tags fa-fw me-1" | partial "plugin/icon.html" -}}
|
||||
{{- range $tagTerms -}}
|
||||
<a href='{{ partial "function/escapeurl.html" .RelPermalink }}' class="post-tag">{{ .LinkTitle }}</a>
|
||||
<a href="{{ partial "function/escapeurl.html" .RelPermalink }}" class="post-tag" title="{{ printf "%v - %v" (T "tags") .LinkTitle }}">{{ .LinkTitle }}</a>
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
</section>
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
{{- $collections = $collections | append (
|
||||
printf `<a href="%v" class="post-collection" title="%v">%v %v</a>`
|
||||
(partial "function/escapeurl.html" .RelPermalink)
|
||||
(printf "%v - %v" (T "collection") .LinkTitle)
|
||||
(printf "%v - %v" (T "collection") .LinkTitle)
|
||||
(dict "Class" "fa-solid fa-layer-group fa-fw" | partial "plugin/icon.html")
|
||||
.LinkTitle
|
||||
) -}}
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
{{- $termIcon = "fa-regular fa-folder-open fa-fw" -}}
|
||||
{{- else if eq $taxonomy "tag" -}}
|
||||
{{- $termIcon = "fa-solid fa-tag fa-fw" -}}
|
||||
{{- else if eq $taxonomy "collections" -}}
|
||||
{{- else if eq $taxonomy "collection" -}}
|
||||
{{- $termIcon = "fa-solid fa-layer-group fa-fw" -}}
|
||||
{{- else -}}
|
||||
{{- $termTitle = printf "%v - %v" (T $taxonomy | default $taxonomy) .Title -}}
|
||||
|
||||
Reference in New Issue
Block a user