Lot of thing
[recipes.git] / backend / templates / base_with_list.html
1 {% extends "base.html" %}
2
3 {% block main_container %}
4 <div class="list">
5 <ul>
6 {% for recipe in recipes %}
7 <li><a href="/recipe/view/{{ recipe.id }}">{{ recipe.title|escape }}</a></li>
8 {% endfor %}
9 </ul>
10 </div>
11 <div class="content">
12 {% block content %}{% endblock %}
13 </div>
14 {% endblock %}