Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nanxstats/hugo-tanka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/taxonomy.html')
-rw-r--r--layouts/_default/taxonomy.html23
1 files changed, 23 insertions, 0 deletions
diff --git a/layouts/_default/taxonomy.html b/layouts/_default/taxonomy.html
new file mode 100644
index 0000000..698387d
--- /dev/null
+++ b/layouts/_default/taxonomy.html
@@ -0,0 +1,23 @@
+{{ define "main" }}
+{{ partial "header" . }}
+
+<div class="content">
+ <div class="container">
+ <div class="row justify-content-center">
+ <div class="col-sm-12 col-lg-8">
+ <div class="mx-0 mx-md-4">
+ <h2>Posts about {{ .Title }}</h2>
+ <hr>
+ <ul>
+ {{ range .Data.Pages.ByPublishDate }}
+ {{ partial "list" . }}
+ {{ end }}
+ </ul>
+ </div>
+ </div>
+ </div>
+ </div>
+</div>
+
+{{ partial "footer" . }}
+{{ end }} \ No newline at end of file