diff options
author | Joris | 2017-05-10 08:48:19 +0200 |
---|---|---|
committer | Joris | 2017-05-10 08:48:19 +0200 |
commit | 851b14df862eaeed3a8d783630f5e45ef22c5c7f (patch) | |
tree | 16913d3e90c774ecca810e48d2ee78927d30eabf /templates | |
parent | b15bf20e39b38783ffd521eb7caf4c471d54ef0d (diff) |
Group by main dishes / desserts (high / low carbs)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/recipe-list.html | 24 |
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> |