diff options
author | Oscar Najera <hi@oscarnajera.com> | 2023-10-20 12:54:58 +0200 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2023-10-20 14:20:32 +0200 |
commit | 4d546d8c89aeafb6cebff16ca5b8cef501233ab1 (patch) | |
tree | 8c665456e0cdc30f4089f906dca46a00822a3e1f /layouts/partials | |
parent | 4a81bf5b7a307d9b448f98ffcaa489be2227d1f2 (diff) | |
download | hugo-minimalist-theme-4d546d8c89aeafb6cebff16ca5b8cef501233ab1.tar.gz hugo-minimalist-theme-4d546d8c89aeafb6cebff16ca5b8cef501233ab1.tar.bz2 hugo-minimalist-theme-4d546d8c89aeafb6cebff16ca5b8cef501233ab1.zip |
Metadata taxonomies link and style
Diffstat (limited to 'layouts/partials')
-rw-r--r-- | layouts/partials/metadata.html | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/layouts/partials/metadata.html b/layouts/partials/metadata.html index 5816186..d34c3a8 100644 --- a/layouts/partials/metadata.html +++ b/layouts/partials/metadata.html @@ -35,18 +35,24 @@ {{ end }} {{ with .Params.tags }} - | <i class="fas fa-tags"></i> + | + <a href="/tags" class="link grow w3-text-theme ph1"> + <i class="fas fa-tags"></i> + </a> {{ range . }} {{ $href := print (absURL "tags/") (urlize .) }} - <a class="link underline near-black" href="{{ $href }}">{{ . }}</a> + <a class="link underline color-inherit" href="{{ $href }}">{{ . }}</a> {{ end }} {{ end }} {{ with .Params.categories }} - | <i class="fas fa-folder-open"></i> + | + <a href="/categories" class="link grow w3-text-theme ph1"> + <i class="fas fa-folder-open"></i> + </a> {{ range . }} {{ $href := print (absURL "categories/") (urlize .) }} - <a class="link underline near-black" href="{{ $href }}">{{ . }}</a> + <a class="underline color-inherit" href="{{ $href }}">{{ . }}</a> {{ end }} {{ end }} </p> |