Lot of thing

This commit is contained in:
Greg Burri 2020-05-20 17:25:56 +02:00
parent 3ebbe8172b
commit e2e54b8f43
12 changed files with 421 additions and 227 deletions

View file

@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block main_container %}
<div class="list">
<ul>
{% for recipe in recipes %}
<li><a href="/recipe/view/{{ recipe.id }}">{{ recipe.title|escape }}</a></li>
{% endfor %}
</ul>
</div>
<div class="content">
{% block content %}{% endblock %}
</div>
{% endblock %}