Use middle dot instead of commas, slashes

This commit is contained in:
Will Faught
2024-05-28 23:58:49 -07:00
parent 45adb2af27
commit 98addb4bb8
3 changed files with 7 additions and 6 deletions

View File

@@ -30,7 +30,7 @@
{{ if or $categories $tags }}
<p class="mb-0 text-center text-secondary" id="paige-keywords">
{{ range $i, $term := sort (append $categories $tags) "LinkTitle" -}}
{{- if gt $i 0 }}, {{ end -}}
{{- if gt $i 0 }} · {{ end -}}
<a class="link-secondary" href="{{ .RelPermalink | safeURL }}">{{ .Title }}</a>
{{- end }}
@@ -40,7 +40,7 @@
{{ with $series }}
<p class="mb-0 text-center text-secondary" id="paige-series">
{{ range $i, $series := . -}}
{{- if gt $i 0 }}, {{ end -}}
{{- if gt $i 0 }} · {{ end -}}
<a class="link-secondary" href="{{ .RelPermalink }}">{{ .Title }}</a>
{{- end }}
@@ -50,7 +50,7 @@
{{ with $authors }}
<p class="mb-0 text-center text-secondary" id="paige-authors">
{{ range $i, $author := . -}}
{{- if gt $i 0 }}, {{ end -}}
{{- if gt $i 0 }} · {{ end -}}
<a class="link-secondary" href="{{ .RelPermalink }}">{{ .Title }}</a>
{{- end }}

View File

@@ -62,7 +62,7 @@
{{ if or $categories $tags }}
<p class="mb-0 paige-keywords text-center text-secondary">
{{ range $i, $term := sort (append $categories $tags) "LinkTitle" -}}
{{- if gt $i 0 }}, {{ end -}}
{{- if gt $i 0 }} · {{ end -}}
<a class="link-secondary" href="{{ .RelPermalink | safeURL }}">{{ .Title }}</a>
{{- end }}
@@ -72,7 +72,7 @@
{{ with $series }}
<p class="mb-0 paige-series text-center text-secondary">
{{ range $i, $series := . -}}
{{- if gt $i 0 }}, {{ end -}}
{{- if gt $i 0 }} · {{ end -}}
<a class="link-secondary" href="{{ .RelPermalink }}">{{ .Title }}</a>
{{- end }}
@@ -82,7 +82,7 @@
{{ with $authors }}
<p class="mb-0 paige-authors text-center text-secondary">
{{ range $i, $author := . -}}
{{- if gt $i 0 }}, {{ end -}}
{{- if gt $i 0 }} · {{ end -}}
<a class="link-secondary" href="{{ .RelPermalink }}">{{ .Title }}</a>
{{- end }}