summaryrefslogtreecommitdiffstats
path: root/layouts/categories
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/categories')
-rw-r--r--layouts/categories/list.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/layouts/categories/list.html b/layouts/categories/list.html
new file mode 100644
index 0000000..8336025
--- /dev/null
+++ b/layouts/categories/list.html
@@ -0,0 +1,14 @@
+{{ define "main" }}
+
+<main>
+ <div>
+ <h2>{{ .Title }}</h2>
+ <ul>
+ {{ range .Pages.ByTitle }}
+ <li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
+ {{ end }}
+ </ul>
+ </div>
+</main>
+
+{{ end }}