Remove text-decoration-none from metadata links

This commit is contained in:
Will Faught
2023-03-15 20:02:32 -07:00
parent ac43008039
commit 1d3d19f759
2 changed files with 6 additions and 6 deletions

View File

@@ -83,7 +83,7 @@
{{- if gt $i 0 }}, {{ end -}}
{{- 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 -}}
{{- $name -}}
{{- end -}}
@@ -98,7 +98,7 @@
{{- with $author.id -}}
{{- 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 -}}
{{- $author.name -}}
{{- end -}}
@@ -112,7 +112,7 @@
{{ with $date }}
<p class="mb-0 paige-date text-center text-secondary">
{{ with $commiturl }}
<a class="link-secondary text-decoration-none" href="{{ . }}">
<a class="link-secondary" href="{{ . }}">
{{ end }}
<time datetime="{{ .Format `2006-01-02` }}">{{ time.Format $dateformat . }}</time>