diff options
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> |