summaryrefslogtreecommitdiff
path: root/greenbox/templates/recipe/recipe_list.html
blob: b942284d0bb79666951dc93bd67c4bf2b45841a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends "base_generic.html" %}

{% block page_title %}Recipe List{% endblock %}
{% block title %}Recipe List{% endblock %}

{% block contents %}
<ul>
{% for recipe in object_list %}
    <li><a href="/recipe/{{ recipe.slug }}">{{ recipe.title }}</a></li>
{% endfor %}
</ul>
{% endblock %}