aboutsummaryrefslogtreecommitdiff
path: root/templates/recipe-list.html
blob: 83d08493d7103668c179fbcc0139ea9e4e85da8e (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
<h3>Plats</h3>

<ul>
  $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>
  $endfor$
</ul>