8 lines
245 B
HTML
8 lines
245 B
HTML
{% extends "base.html" %}
|
|
{%block title%}Recipes{%endblock%}
|
|
{%block body %}
|
|
<h1>Recipes</h1>
|
|
{% for recipe in recipes %}
|
|
<li>{{price(recipe)}} <a href="{{ recipe.outpath }}">{{ recipe.title }}</a></li>
|
|
{% endfor %}
|
|
{%endblock%}
|