summaryrefslogtreecommitdiffstats
path: root/layouts/_default/list.html.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default/list.html.html')
-rw-r--r--layouts/_default/list.html.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/_default/list.html.html b/layouts/_default/list.html.html
new file mode 100644
index 0000000..13f2947
--- /dev/null
+++ b/layouts/_default/list.html.html
@@ -0,0 +1,13 @@
+{{ define "main" }}
+<div class="articles">
+ {{ with .Title }}<h1 class="page-title">{{ . }}</h1>{{ end }}
+ {{- with .Content }}
+ <div class="category-content">
+ {{ .Content }}
+ </div>
+ {{- end }}
+ {{ range .Paginator.Pages }}
+ {{- .Render "teaser" }}
+ {{ end }}
+</div>
+{{ end }}