From 0ce8744897b9aa13ea568a6985da9570e4aca90b Mon Sep 17 00:00:00 2001
From: Joris
Date: Sun, 2 Feb 2020 13:53:54 +0100
Subject: Use zola generator
- Use CSS instead of Haskell with Clay
- Use TypeScript instead of PureScript
---
templates/index.html | 77 ++++++++++++++++++++++++++++++++++++++++++++++++----
1 file changed, 71 insertions(+), 6 deletions(-)
(limited to 'templates/index.html')
diff --git a/templates/index.html b/templates/index.html
index e6faafd..74bf36f 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -1,15 +1,80 @@
+
- $title$
+ Recettes
-
+
-
-
- $body$
-
+
+
+
+
+
+
+ {% block content %}
+
+ Plats
+
+
+ {% set section = get_section(path = "plats/_index.md") %}
+ {% for page in section.pages | sort(attribute = "title") %}
+ -
+
+ {{ page.title }}
+
+
+ {% endfor %}
+
+
+ Desserts
+
+ Hypoglucidiques
+
+
+ {% set section = get_section(path = "desserts/hypoglucidique/_index.md") %}
+ {% for page in section.pages | sort(attribute = "title") %}
+ -
+
+ {{ page.title }}
+
+
+ {% endfor %}
+
+
+ Hyperglucidiques
+
+
+ {% set section = get_section(path = "desserts/hyperglucidique/_index.md") %}
+ {% for page in section.pages | sort(attribute = "title") %}
+ -
+
+ {{ page.title }}
+
+
+ {% endfor %}
+
+
+ Nettoyage
+
+
+ {% set section = get_section(path = "nettoyage/_index.md") %}
+ {% for page in section.pages | sort(attribute = "title") %}
+ -
+
+ {{ page.title }}
+
+
+ {% endfor %}
+
+
+ {% endblock content %}
+
+
+
--
cgit v1.2.3