aboutsummaryrefslogtreecommitdiff
path: root/templates/recipe-list.html
blob: 32e033a38744ae22c9b89f7166b744b58113b801 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<h1>Plats</h1>

<ul>
  $for(mainDishes)$
    <li>
      <a href="$url$">$title$</a>
    </li>
  $endfor$
</ul>

<h1>Desserts hypoglucidiques</h1>

<ul>
  $for(lowCarbDesserts)$
    <li>
      <a href="$url$">$title$</a>
    </li>
  $endfor$
</ul>

<h1>Desserts hyperglucidiques</h1>

<ul>
  $for(highCarbDesserts)$
    <li>
      <a href="$url$">$title$</a>
    </li>
  $endfor$
</ul>