summaryrefslogtreecommitdiffstats
path: root/themes/Brine
diff options
context:
space:
mode:
Diffstat (limited to 'themes/Brine')
-rw-r--r--themes/Brine/layouts/_default/recipes.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/themes/Brine/layouts/_default/recipes.html b/themes/Brine/layouts/_default/recipes.html
new file mode 100644
index 0000000..1b43af4
--- /dev/null
+++ b/themes/Brine/layouts/_default/recipes.html
@@ -0,0 +1,22 @@
+{{ define "main" }} <h1>{{ .Title }}</h1>
+ {{ .Content }}
+ <h3>Meals</h3>
+ <ul>{{ range .Site.Taxonomies.recipe.meal}}
+ <li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a></li>{{ end }}
+ </ul>
+ <h3>Snacks</h3>
+ <ul>{{ range .Site.Taxonomies.recipe.snack}}
+ <li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a></li>{{ end }}
+ </ul>
+ <h3>Breads</h3>
+ <ul>{{ range .Site.Taxonomies.recipe.bread}}
+ <li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a></li>{{ end }}
+ </ul>
+ <h3>Desserts</h3>
+ <ul>{{ range .Site.Taxonomies.recipe.dessert}}
+ <li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a></li>{{ end }}
+ </ul>{{ end }}
+
+
+
+