aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2021-09-05 23:59:06 -0400
committerThedro Neely <thedroneely@gmail.com>2021-09-05 23:59:06 -0400
commitbac4bb73170c51686ee4d5f3ed37a5fdaa6c1c99 (patch)
tree5d9519ba4f09a179854362b67b1440cd8ff72cbe
parent8130bab4117186fe0b7ea608291817636e125ad1 (diff)
downloadthedroneely.com-bac4bb73170c51686ee4d5f3ed37a5fdaa6c1c99.tar.gz
thedroneely.com-bac4bb73170c51686ee4d5f3ed37a5fdaa6c1c99.tar.bz2
thedroneely.com-bac4bb73170c51686ee4d5f3ed37a5fdaa6c1c99.zip
generators/hugo/layouts/_default/archive: Add title to anchor tags
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/archive.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/generators/hugo/themes/tdro/layouts/_default/archive.html b/generators/hugo/themes/tdro/layouts/_default/archive.html
index 4d9d910..784d130 100644
--- a/generators/hugo/themes/tdro/layouts/_default/archive.html
+++ b/generators/hugo/themes/tdro/layouts/_default/archive.html
@@ -17,7 +17,7 @@
{{ range $articles }}
{{ if (ne .Params.hidden true) }}
<li>
- <a class="is-block" href="{{ .RelPermalink }}">
+ <a title="{{ .Title }}" class="is-block" href="{{ .RelPermalink }}">
<span class="article__list__date monospace has-text-grey-dark">{{ .Date.Format "02 Jan" }}</span>{{ .Title }}
</a>
</li>