diff options
Diffstat (limited to 'content/recipes/index.md')
-rw-r--r-- | content/recipes/index.md | 50 |
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 |