aboutsummaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorJoris2017-05-10 08:48:19 +0200
committerJoris2017-05-10 08:48:19 +0200
commit851b14df862eaeed3a8d783630f5e45ef22c5c7f (patch)
tree16913d3e90c774ecca810e48d2ee78927d30eabf /templates
parentb15bf20e39b38783ffd521eb7caf4c471d54ef0d (diff)
downloadcooking-851b14df862eaeed3a8d783630f5e45ef22c5c7f.tar.gz
cooking-851b14df862eaeed3a8d783630f5e45ef22c5c7f.tar.bz2
cooking-851b14df862eaeed3a8d783630f5e45ef22c5c7f.zip
Group by main dishes / desserts (high / low carbs)
Diffstat (limited to 'templates')
-rw-r--r--templates/recipe-list.html24
1 files changed, 23 insertions, 1 deletions
diff --git a/templates/recipe-list.html b/templates/recipe-list.html
index 372a2e8..83d0849 100644
--- a/templates/recipe-list.html
+++ b/templates/recipe-list.html
@@ -1,5 +1,27 @@
+<h3>Plats</h3>
+
<ul>
- $for(recipes)$
+ $for(mainDishes)$
+ <li>
+ <a href="$url$">$title$</a>
+ </li>
+ $endfor$
+</ul>
+
+<h3>Desserts hypoglucidiques</h3>
+
+<ul>
+ $for(lowCarbDesserts)$
+ <li>
+ <a href="$url$">$title$</a>
+ </li>
+ $endfor$
+</ul>
+
+<h3>Desserts hyperglucidiques</h3>
+
+<ul>
+ $for(highCarbDesserts)$
<li>
<a href="$url$">$title$</a>
</li>