comfy-recipes/comfyrecipes/templates/index.html
2023-11-19 00:18:12 +01:00

8 lines
289 B
HTML

{% 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%}