diff options
author | Matthew Lemon <matt@matthewlemon.com> | 2022-07-18 08:57:48 +0100 |
---|---|---|
committer | Matthew Lemon <matt@matthewlemon.com> | 2022-07-18 08:57:48 +0100 |
commit | 65547c56d0b81371cadb7bf799b4ab863b5f0a4e (patch) | |
tree | 1f642ee0afb3792aa59aac53bcd445ddde9ccb1e /themes/problematic/layouts/_default/taxonomy.html | |
parent | f43d1ec014e1b15a88492b3f1f2d1bdbaab7b529 (diff) |
taxonomies amongst other stuff
Diffstat (limited to 'themes/problematic/layouts/_default/taxonomy.html')
-rw-r--r-- | themes/problematic/layouts/_default/taxonomy.html | 12 |
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 }} |