summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbreadcat2020-07-28 11:33:32 +0100
committerbreadcat2020-07-28 11:33:32 +0100
commitc73aea2ddce6fcd2f63107efaf6858b56bbcc018 (patch)
tree3a685ce927117344120155215d4fe9444e9e45e6
parent5727fd3ead8189f55d4e6e27ff2d63452e25c345 (diff)
downloadblog.minskio.co.uk-c73aea2ddce6fcd2f63107efaf6858b56bbcc018.tar.gz
blog.minskio.co.uk-c73aea2ddce6fcd2f63107efaf6858b56bbcc018.tar.bz2
blog.minskio.co.uk-c73aea2ddce6fcd2f63107efaf6858b56bbcc018.zip
Add a few cooking guides
-rw-r--r--content/recipes/baking-staples.md17
-rw-r--r--content/recipes/quick-meals.md11
-rw-r--r--content/recipes/quick-snacks.md20
-rw-r--r--themes/Brine/layouts/_default/recipes.html4
4 files changed, 52 insertions, 0 deletions
diff --git a/content/recipes/baking-staples.md b/content/recipes/baking-staples.md
new file mode 100644
index 0000000..4630716
--- /dev/null
+++ 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
new file mode 100644
index 0000000..44733c1
--- /dev/null
+++ 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
new file mode 100644
index 0000000..55a23b8
--- /dev/null
+++ 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
index ee63edc..6153241 100644
--- 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 }}