comfy-recipes/templates/index.html
2023-11-06 23:55:13 +01:00

8 lines
No EOL
230 B
HTML

{% extends "base.html" %}
{%block title%}Recipes{%endblock%}
{%block body %}
<h1>Recipes</h1>
{% for recipe in recipes %}
<li><a href="{{ recipe.outpath }}">{{ recipe.title }}</a></li>
{% endfor %}
{%endblock%}