summaryrefslogtreecommitdiffstats
path: root/content/recipes/_index.md
diff options
context:
space:
mode:
authorbreadcat2020-06-24 14:40:20 +0100
committerbreadcat2020-06-24 14:40:20 +0100
commit156062a7c0299395a0721f45f9bd7cff2fed5775 (patch)
tree016aa2ce52540f2eabbfaa3462cb256ee6c235cf /content/recipes/_index.md
parent1a13a8f9562f8cdee26ed40e0a308e42fe2cdab5 (diff)
downloadblog.minskio.co.uk-156062a7c0299395a0721f45f9bd7cff2fed5775.tar.gz
blog.minskio.co.uk-156062a7c0299395a0721f45f9bd7cff2fed5775.tar.bz2
blog.minskio.co.uk-156062a7c0299395a0721f45f9bd7cff2fed5775.zip
Add recipe pages
Very, very broken. Seeking advice
Diffstat (limited to 'content/recipes/_index.md')
-rw-r--r--content/recipes/_index.md50
1 files changed, 50 insertions, 0 deletions
diff --git a/content/recipes/_index.md b/content/recipes/_index.md
new file mode 100644
index 0000000..410e5f1
--- /dev/null
+++ b/content/recipes/_index.md
@@ -0,0 +1,50 @@
+---
+layout: page
+title: Recipes
+---
+
+A personal archive of ketogenic recipes, straight to the point, using metric measurements with slight tweaks
+
+# Meals:
+<ul>
+ {% for recipe in site.pages %}
+ {% if recipe.type == 'recipe_meal' %}
+ <li>
+ <a href="{{ recipe.url }}">{{recipe.title}}</a>
+ </li>
+ {% endif %}
+ {% endfor %}
+</ul>
+
+# Snacks:
+<ul>
+ {% for recipe in site.pages %}
+ {% if recipe.type == 'recipe_snack' %}
+ <li>
+ <a href="{{ recipe.url }}">{{recipe.title}}</a>
+ </li>
+ {% endif %}
+ {% endfor %}
+</ul>
+
+# Breads
+<ul>
+ {% for recipe in site.pages %}
+ {% if recipe.type == 'recipe_bread' %}
+ <li>
+ <a href="{{ recipe.url }}">{{recipe.title}}</a>
+ </li>
+ {% endif %}
+ {% endfor %}
+</ul>
+
+# Desserts
+<ul>
+ {% for recipe in site.pages %}
+ {% if recipe.type == 'recipe_dessert' %}
+ <li>
+ <a href="{{ recipe.url }}">{{recipe.title}}</a>
+ </li>
+ {% endif %}
+ {% endfor %}
+</ul> \ No newline at end of file