{% extends "base.html" %}
{%block title%}Recipes{%endblock%}
{%block body %}
    <h1>Recipes</h1>
    {% for recipe in recipes %}
    <li>{% if recipe.price != None %}{{price(recipe.price)}} {%endif%}<a href="{{ recipe.outpath }}">{{ recipe.title }}</a></li>
    {% endfor %}
{%endblock%}