From 026ace6302f23837e34e982f6660e09ff38ee97b Mon Sep 17 00:00:00 2001
From: Joris
Date: Sat, 9 Jan 2021 14:24:49 +0100
Subject: Use plain HTML and CSS
---
templates/index.html | 106 -------------------------------------------------
templates/page.html | 17 --------
templates/section.html | 4 --
3 files changed, 127 deletions(-)
delete mode 100644 templates/index.html
delete mode 100644 templates/page.html
delete mode 100644 templates/section.html
(limited to 'templates')
diff --git a/templates/index.html b/templates/index.html
deleted file mode 100644
index 6a61cc0..0000000
--- a/templates/index.html
+++ /dev/null
@@ -1,106 +0,0 @@
-
-
-
-
-
-
- Recettes
-
-
-
-
-
-
-
-
-
- {% 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 %}
-
-
- Pains
-
-
- {% set section = get_section(path = "pains/_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 %}
-
-
- Conservation
-
-
- {% set section = get_section(path = "conservation/_index.md") %}
- {% for page in section.pages | sort(attribute = "title") %}
- -
-
- {{ page.title }}
-
-
- {% endfor %}
-
-
- {% endblock content %}
-
-
-
-
-
diff --git a/templates/page.html b/templates/page.html
deleted file mode 100644
index 5174a14..0000000
--- a/templates/page.html
+++ /dev/null
@@ -1,17 +0,0 @@
-{% extends "index.html" %}
-
-{% block content %}
-
-
- ← Retour à l’accueil
-
-
-
-
- {{ page.content | safe }}
-
-
-
-
-
-{% endblock content %}
diff --git a/templates/section.html b/templates/section.html
deleted file mode 100644
index fe1da7f..0000000
--- a/templates/section.html
+++ /dev/null
@@ -1,4 +0,0 @@
-{% extends "index.html" %}
-
-{% block content %}
-{% endblock content %}
--
cgit v1.2.3