aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-09-02 21:05:30 -0400
committerThedro Neely <thedroneely@gmail.com>2019-09-02 21:05:30 -0400
commit3568879e732c79c4064c0c52a82fda8c85c137b8 (patch)
treebe62f79d2f40bf2ce3670872c272e34d1ccfe7dc /generators/hugo/themes
parenta6ad3304495fff55c1f3260e74df7dd98a7be6fd (diff)
downloadthedroneely.com-3568879e732c79c4064c0c52a82fda8c85c137b8.tar.gz
thedroneely.com-3568879e732c79c4064c0c52a82fda8c85c137b8.tar.bz2
thedroneely.com-3568879e732c79c4064c0c52a82fda8c85c137b8.zip
generators/hugo/layouts/_default/archive.html: Hover background on archive list
Diffstat (limited to 'generators/hugo/themes')
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/archive.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/generators/hugo/themes/tdro/layouts/_default/archive.html b/generators/hugo/themes/tdro/layouts/_default/archive.html
index 237bfbd..7f3d877 100644
--- a/generators/hugo/themes/tdro/layouts/_default/archive.html
+++ b/generators/hugo/themes/tdro/layouts/_default/archive.html
@@ -23,8 +23,9 @@
{{ range (where .Pages "Type" $type) }}
{{ if (ne .Params.hidden true) }}
<li>
- <span class="has-text-grey-dark">{{ .Date.Format "02 Jan" }}</span>
- — <a href="{{ .RelPermalink }}">{{ .Title }}</a>
+ <a class="is-block" href="{{ .RelPermalink }}">
+ <span class="has-text-grey-dark">{{ .Date.Format "02 Jan" }}</span> — {{ .Title }}
+ </a>
</li>
{{ end }}
{{ end }}