Remove text-decoration-none from metadata links

master
Will Faught 2 years ago
parent ac43008039
commit 1d3d19f759

@ -62,7 +62,7 @@
{{- if gt $i 0 }}, {{ end -}} {{- if gt $i 0 }}, {{ end -}}
{{- with site.GetPage (print "series/" $name) -}} {{- with site.GetPage (print "series/" $name) -}}
<a class="link-secondary text-decoration-none" href="{{ .RelPermalink }}">{{ .Title | default $name }}</a> <a class="link-secondary" href="{{ .RelPermalink }}">{{ .Title | default $name }}</a>
{{- else -}} {{- else -}}
{{- $name -}} {{- $name -}}
{{- end -}} {{- end -}}
@ -77,7 +77,7 @@
{{- with $author.id -}} {{- with $author.id -}}
{{- with site.GetPage (print "authors/" .) -}} {{- with site.GetPage (print "authors/" .) -}}
<a class="link-secondary text-decoration-none" href="{{ .RelPermalink }}">{{ .Title | default $author.name }}</a> <a class="link-secondary" href="{{ .RelPermalink }}">{{ .Title | default $author.name }}</a>
{{- else -}} {{- else -}}
{{- $author.name -}} {{- $author.name -}}
{{- end -}} {{- end -}}
@ -91,7 +91,7 @@
{{ with $date }} {{ with $date }}
<p class="mb-0 {{ if $class }} paige-date {{ end }} text-center text-secondary" {{ if $id }} id="paige-date" {{ end }}> <p class="mb-0 {{ if $class }} paige-date {{ end }} text-center text-secondary" {{ if $id }} id="paige-date" {{ end }}>
{{ with $commiturl }} {{ with $commiturl }}
<a class="link-secondary text-decoration-none" href="{{ . }}"> <a class="link-secondary" href="{{ . }}">
{{ end }} {{ end }}
<time datetime="{{ .Format `2006-01-02` }}">{{ time.Format $dateformat . }}</time> <time datetime="{{ .Format `2006-01-02` }}">{{ time.Format $dateformat . }}</time>

@ -83,7 +83,7 @@
{{- if gt $i 0 }}, {{ end -}} {{- if gt $i 0 }}, {{ end -}}
{{- with site.GetPage (print "series/" $name) -}} {{- with site.GetPage (print "series/" $name) -}}
<a class="link-secondary text-decoration-none" href="{{ .RelPermalink }}">{{ .Title | default $name }}</a> <a class="link-secondary" href="{{ .RelPermalink }}">{{ .Title | default $name }}</a>
{{- else -}} {{- else -}}
{{- $name -}} {{- $name -}}
{{- end -}} {{- end -}}
@ -98,7 +98,7 @@
{{- with $author.id -}} {{- with $author.id -}}
{{- with site.GetPage (print "authors/" .) -}} {{- with site.GetPage (print "authors/" .) -}}
<a class="link-secondary text-decoration-none" href="{{ .RelPermalink }}">{{ .Title | default $author.name }}</a> <a class="link-secondary" href="{{ .RelPermalink }}">{{ .Title | default $author.name }}</a>
{{- else -}} {{- else -}}
{{- $author.name -}} {{- $author.name -}}
{{- end -}} {{- end -}}
@ -112,7 +112,7 @@
{{ with $date }} {{ with $date }}
<p class="mb-0 paige-date text-center text-secondary"> <p class="mb-0 paige-date text-center text-secondary">
{{ with $commiturl }} {{ with $commiturl }}
<a class="link-secondary text-decoration-none" href="{{ . }}"> <a class="link-secondary" href="{{ . }}">
{{ end }} {{ end }}
<time datetime="{{ .Format `2006-01-02` }}">{{ time.Format $dateformat . }}</time> <time datetime="{{ .Format `2006-01-02` }}">{{ time.Format $dateformat . }}</time>

Loading…
Cancel
Save