summaryrefslogtreecommitdiffstats
path: root/themes/problematic/layouts/_default/taxonomy.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/problematic/layouts/_default/taxonomy.html')
-rw-r--r--themes/problematic/layouts/_default/taxonomy.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/themes/problematic/layouts/_default/taxonomy.html b/themes/problematic/layouts/_default/taxonomy.html
new file mode 100644
index 0000000..f59c372
--- /dev/null
+++ b/themes/problematic/layouts/_default/taxonomy.html
@@ -0,0 +1,12 @@
+{{ define "main" }}
+ <div class="container">
+ <h1>All {{ .Type }}</h1>
+ <ul>
+ {{ range .Pages }}
+ <li>
+ <a href="{{ .Permalink }}">{{ .Title }}</a>
+ </li>
+ {{ end }}
+ </ul>
+ </div>
+{{ end }}