aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOscar Najera <hi@oscarnajera.com>2023-10-15 03:40:16 +0200
committerOscar Najera <hi@oscarnajera.com>2023-10-15 03:40:16 +0200
commit6c38043107f41a059a103022555a2ddb84e0b944 (patch)
treeee8a17c3b7eeb5181ce8596afbf40a2d22be91e1
parent82fdcd672008651dd76f8b1f506f534145d5cc7a (diff)
downloadhugo-minimalist-theme-6c38043107f41a059a103022555a2ddb84e0b944.tar.gz
hugo-minimalist-theme-6c38043107f41a059a103022555a2ddb84e0b944.tar.bz2
hugo-minimalist-theme-6c38043107f41a059a103022555a2ddb84e0b944.zip
Correct link color on taxonomy
-rw-r--r--layouts/taxonomy/terms.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/layouts/taxonomy/terms.html b/layouts/taxonomy/terms.html
index babfd87..73856b3 100644
--- a/layouts/taxonomy/terms.html
+++ b/layouts/taxonomy/terms.html
@@ -1,9 +1,9 @@
{{ define "main" }}
<section class="mw7 center">
- <h2 class="baskerville f2 fw1 ph3 ph0-l near-white lh-title">{{ .Title }}</h2>
+ <h2 class="baskerville f2 fw1 ph3 ph0-l near-black lh-title">{{ .Title }}</h2>
<section class="">
{{ range .Data.Terms.ByCount }}
- <a class="dib near-white link grow hover-bg-white-80 hover-near-black pa2 ba ma1 br2" href="#{{ .Name | urlize }}-list" data-tag="{{ .Name | lower }}">
+ <a class="dib near-black link grow hover-bg-white-80 hover-near-black pa2 ba ma1 br2" href="#{{ .Name | urlize }}-list" data-tag="{{ .Name | lower }}">
{{ .Name }}
</a>
{{ end }}
@@ -14,14 +14,14 @@
{{ range .Data.Terms.ByCount }}
<div id="{{ .Name | urlize }}-list" class="pa1 pa2-ns bb" data-tag="{{ .Name | lower }}">
<h4 class="f4 bold center lh-title">
- <a class="link dim near-white" href="{{ .Name | urlize }}">
+ <a class="link dim near-black" href="{{ .Name | urlize }}">
{{ .Name }} ({{ .Pages | len }})
</a>
</h4>
<ul class="list ml0">
{{ range .Pages.ByDate }}
- <li class="pv1 fa-check fas">
- <a class="link dim near-white lh-copy" href="{{ .Permalink }}">
+ <li class="lh-copy">
+ <a class="link dim near-black" href="{{ .Permalink }}">
{{ .Title }}
</a>
<span class="white-60"> - {{ .Date | time.Format ":date_long" }}</span>