Use middle dot instead of commas, slashes

master
Will Faught 1 year ago
parent 45adb2af27
commit 98addb4bb8

@ -7,6 +7,7 @@
$color-mode-type: media-query;
{{ end }}
$breadcrumb-divider: quote("·");
$primary: {{ $color }};
@import "bootstrap";

@ -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 }}

@ -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 }}

Loading…
Cancel
Save