comfy-recipes/comfyrecipes/templates/index.html

8 lines
300 B
HTML

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