aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/conservation/_index.md2
-rw-r--r--content/conservation/lacto-fermentation.md19
-rw-r--r--templates/index.html13
3 files changed, 34 insertions, 0 deletions
diff --git a/content/conservation/_index.md b/content/conservation/_index.md
new file mode 100644
index 0000000..ac36e06
--- /dev/null
+++ b/content/conservation/_index.md
@@ -0,0 +1,2 @@
++++
++++
diff --git a/content/conservation/lacto-fermentation.md b/content/conservation/lacto-fermentation.md
new file mode 100644
index 0000000..db2b44e
--- /dev/null
+++ b/content/conservation/lacto-fermentation.md
@@ -0,0 +1,19 @@
++++
+title = "Lacto-fermentation"
++++
+
+Ingrédients
+===========
+
+- 1 L d’eau
+- 30 g de gros sel
+
+Recette
+=======
+
+1. Verser le gros sel dans l’eau, et porter à ébullition.
+2. Laisser refroidir.
+3. Mettre les légumes dans un bocal.
+4. Recouvrir complètement de l’eau salée refroidie.
+5. Laisser reposer 1 semaine à température ambiante.
+6. Conserver au frais, à la cave ou au réfrigérateur.
diff --git a/templates/index.html b/templates/index.html
index e107a7b..6a61cc0 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -85,6 +85,19 @@
{% endfor %}
</ul>
+ <h1 class="g-Recipe__Title">Conservation</h1>
+
+ <ul class="g-Page__Recipes">
+ {% set section = get_section(path = "conservation/_index.md") %}
+ {% for page in section.pages | sort(attribute = "title") %}
+ <li class="g-Page__Recipe">
+ <a class="g-Link" href="{{ page.permalink }}">
+ {{ page.title }}
+ </a>
+ </li>
+ {% endfor %}
+ </ul>
+
{% endblock content %}
</main>