blob: 410e5f16b81afe885004343106225745f9d15727 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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>
|