summaryrefslogtreecommitdiffstats
path: root/layouts/_default/term.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/term.html')
-rw-r--r--layouts/_default/term.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/layouts/_default/term.html b/layouts/_default/term.html
new file mode 100644
index 0000000..6ad5d40
--- /dev/null
+++ b/layouts/_default/term.html
@@ -0,0 +1,26 @@
+{{ define "main" }}
+
+<div class="articles">
+ {{/* TODO: Translate me */}}
+ <h1 class="page-title">
+ {{ with .Title }}{{ i18n "publications_tagged" . }}{{ end }}
+ </h1>
+
+ {{/* Render category content if any */}}
+ {{ with .Content }}
+ <div class="section-content">
+ {{ .Content }}
+ </div>
+ {{ end }}
+
+ {{/* Render posts list */}}
+ <div class="post-list">
+ {{ range .Paginator.Pages }}
+ {{ .Render "teaser" }}
+ {{ end }}
+
+ {{- partial "pagination.html" . -}}
+ </div>
+</div>
+
+{{ end }}