diff options
author | Alan Pearce | 2020-01-06 21:17:03 +0100 |
---|---|---|
committer | Alan Pearce | 2020-01-06 21:34:07 +0100 |
commit | ee3e93972c9a86d6eb86015f93894af3e40f966b (patch) | |
tree | 4a451599f2185051e9eadf8c9b76dda0ae01e331 /layouts | |
parent | 6394af8cf6c1fc3315312cd5106725e70cbd0764 (diff) | |
download | hugo-xmin-ee3e93972c9a86d6eb86015f93894af3e40f966b.tar.lz hugo-xmin-ee3e93972c9a86d6eb86015f93894af3e40f966b.tar.zst hugo-xmin-ee3e93972c9a86d6eb86015f93894af3e40f966b.zip |
Show tags as article metadata
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/_default/single.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html index bde04ef..fc7edb3 100644 --- a/layouts/_default/single.html +++ b/layouts/_default/single.html @@ -3,6 +3,13 @@ <h1><span class="title">{{ .Title | markdownify }}</span></h1> {{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }} {{ if (gt .Params.date 0) }}<h2 class="date">{{ .Date.Format "2006-01-02" }}</h2>{{ end }} +<p class="terms"> + {{ range $i := (slice "categories" "tags") }} + {{ with ($.Param $i) }} + {{ $i | title }}: {{ range $k := . }}<a href="{{ relURL (print "/" $i "/" $k | urlize) }}">{{$k}}</a> {{ end }} + {{ end }} + {{ end }} +</p> </div> <main> |