diff options
author | Joris | 2021-01-09 14:24:49 +0100 |
---|---|---|
committer | Joris | 2021-01-09 14:24:49 +0100 |
commit | 026ace6302f23837e34e982f6660e09ff38ee97b (patch) | |
tree | 4ea14b3cdadadad97b349901148b8f4a2462482e /templates/index.html | |
parent | 8337dd669c518a70bffdf1e91059e0968d786c0f (diff) |
Use plain HTML and CSS
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 106 |
1 files changed, 0 insertions, 106 deletions
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 @@ -<!DOCTYPE html> -<html lang="fr"> - - <head> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - <title>Recettes</title> - <link rel="stylesheet" href="/main.css" /> - <link rel="icon" href="/icon.png"> - </head> - - <body class="g-Page"> - - <header class="g-Page__Header"> - {{ page.title | default (value = "Recettes") }} - </header> - - <main class="g-Page__Content"> - {% block content %} - - <h1 class="g-Recipe__Title">Plats</h1> - - <ul class="g-Page__Recipes"> - {% set section = get_section(path = "plats/_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> - - <h1 class="g-Recipe__Title">Desserts</h1> - - <h2 class="g-Recipe__SubTitle">Hypoglucidiques</h2> - - <ul class="g-Page__Recipes"> - {% set section = get_section(path = "desserts/hypoglucidique/_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> - - <h2 class="g-Recipe__SubTitle">Hyperglucidiques</h2> - - <ul class="g-Page__Recipes"> - {% set section = get_section(path = "desserts/hyperglucidique/_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> - - <h1 class="g-Recipe__Title">Pains</h1> - - <ul class="g-Page__Recipes"> - {% set section = get_section(path = "pains/_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> - - <h1 class="g-Recipe__Title">Nettoyage</h1> - - <ul class="g-Page__Recipes"> - {% set section = get_section(path = "nettoyage/_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> - - <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> - - </body> - -</html> |