commit c73aea2ddce6fcd2f63107efaf6858b56bbcc018
parent 5727fd3ead8189f55d4e6e27ff2d63452e25c345
Author: breadcat <peter@minskio.co.uk>
Date: Tue, 28 Jul 2020 11:33:32 +0100
Add a few cooking guides
Diffstat:
4 files changed, 52 insertions(+), 0 deletions(-)
diff --git a/content/recipes/baking-staples.md b/content/recipes/baking-staples.md
@@ -0,0 +1,17 @@
+---
+title: Baking Staples
+recipe: guide
+---
+
+* Almond flour
+* Baking powder ([not soda!](https://www.youtube.com/watch?v=_92FaS_0eiE))
+* Cacao powder
+* Coconut flour
+* Coconut oil
+* Flaxseed meal
+* Liquid stevia
+* Powdered Erythritol
+* Psyllium husk powder
+* Unsweetened chocolate
+* Vanilla extract
+* Xanthan gum
diff --git a/content/recipes/quick-meals.md b/content/recipes/quick-meals.md
@@ -0,0 +1,11 @@
+---
+title: Quick Meals
+recipe: guide
+---
+
+* Asparagus wrapped in cheese/bacon
+* Bacon and avocado
+* Burger /w salad
+* Cheese omelette
+* Meat and vegetables
+* Tinned fish
diff --git a/content/recipes/quick-snacks.md b/content/recipes/quick-snacks.md
@@ -0,0 +1,20 @@
+---
+title: Quick Snacks
+recipe: guide
+---
+
+* Biltong
+* Boiled eggs
+* Cheese
+* Cheese/meat rollups
+* Cured meat
+* Dark chocolate
+* Kimchi
+* Nut butters
+* Nuts
+* Olives
+* Pork scratchings
+* Seed butters
+* Seeds
+* Sugar free jelly
+* Yogurt with stevia
diff --git a/themes/Brine/layouts/_default/recipes.html b/themes/Brine/layouts/_default/recipes.html
@@ -19,4 +19,8 @@
<h3>Drinks</h3>
<ul>{{ range sort .Site.Taxonomies.recipe.drink ".Page.RelPermalink" }}
<li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a></li>{{ end }}
+ </ul>
+ <h3>Guides</h3>
+ <ul>{{ range sort .Site.Taxonomies.recipe.guide ".Page.RelPermalink" }}
+ <li><a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a></li>{{ end }}
</ul>{{ end }}