Add tag taxonomy

This commit is contained in:
Carson Ip
2017-02-19 11:42:14 +01:00
parent 7ff5415e2c
commit 818a19ce97

19
layouts/taxonomy/tag.html Normal file
View File

@@ -0,0 +1,19 @@
{{ partial "head.html" . }}
<body>
<div id="container">
{{ partial "header.html" . }}
<section id="main" class="outer">
<section class="archives-wrap">
<div class="archive-tag-wrap">
<span class="archive-tag">#{{ .Title }}</span>
</div>
<div class="archives">
{{ range .Data.Pages }}
{{ partial "li.html" . }}
{{ end }}
</div></section>
</section>
{{ partial "footer.html" . }}
</div>
</body>
</html>