summaryrefslogtreecommitdiffstats
path: root/themes/tozt/layouts/recipes/list.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/tozt/layouts/recipes/list.html')
-rw-r--r--themes/tozt/layouts/recipes/list.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/themes/tozt/layouts/recipes/list.html b/themes/tozt/layouts/recipes/list.html
new file mode 100644
index 0000000..1c0c82e
--- /dev/null
+++ b/themes/tozt/layouts/recipes/list.html
@@ -0,0 +1,13 @@
+{{ partial "header.html" . }}
+
+{{ .Content }}
+
+<ul>
+ {{ range (where .Data.Pages "Section" "!=" "") }}
+ <li>
+ <a href="{{ .URL }}">{{ .Title | markdownify }}</a>
+ </li>
+ {{ end }}
+</ul>
+
+{{ partial "footer.html" . }}