about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2020-01-06 21:17:03 +0100
committerAlan Pearce2020-01-06 21:34:07 +0100
commitee3e93972c9a86d6eb86015f93894af3e40f966b (patch)
tree4a451599f2185051e9eadf8c9b76dda0ae01e331
parent6394af8cf6c1fc3315312cd5106725e70cbd0764 (diff)
downloadhugo-xmin-ee3e93972c9a86d6eb86015f93894af3e40f966b.tar.xz
hugo-xmin-ee3e93972c9a86d6eb86015f93894af3e40f966b.zip
Show tags as article metadata
-rw-r--r--layouts/_default/single.html7
-rw-r--r--static/css/style.css1
2 files changed, 8 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 @@
3<h1><span class="title">{{ .Title | markdownify }}</span></h1> 3<h1><span class="title">{{ .Title | markdownify }}</span></h1>
4{{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }} 4{{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }}
5{{ if (gt .Params.date 0) }}<h2 class="date">{{ .Date.Format "2006-01-02" }}</h2>{{ end }} 5{{ if (gt .Params.date 0) }}<h2 class="date">{{ .Date.Format "2006-01-02" }}</h2>{{ end }}
6<p class="terms">
7 {{ range $i := (slice "categories" "tags") }}
8 {{ with ($.Param $i) }}
9 {{ $i | title }}: {{ range $k := . }}<a href="{{ relURL (print "/" $i "/" $k | urlize) }}">{{$k}}</a> {{ end }}
10 {{ end }}
11 {{ end }}
12</p>
6</div> 13</div>
7 14
8<main> 15<main>
diff --git a/static/css/style.css b/static/css/style.css index 1eb0bfc..23c0912 100644 --- a/static/css/style.css +++ b/static/css/style.css
@@ -16,6 +16,7 @@ body {
16 text-decoration: none; 16 text-decoration: none;
17} 17}
18.menu, .article-meta, footer { text-align: center; } 18.menu, .article-meta, footer { text-align: center; }
19.terms { font-size: .9em; }
19.title { font-size: 1.1em; } 20.title { font-size: 1.1em; }
20footer a { text-decoration: none; } 21footer a { text-decoration: none; }
21hr { 22hr {