{% extends "_base.html" %} {% block title %}Recipes · Cauldron{% endblock %} {% block content %}
// recipes

the grimoire

{{ total }} recipes bound to your account. tap any to open.
{% if not recipes %}

no recipes returned. either mealie has none for your account or the request failed quietly.

{% else %}

browse

page {{ page }} / {{ pages }}
{% for r in recipes %}
{{ r.name }}
{% if r.totalTime %}{{ r.totalTime }} · {% endif %} {% if r.recipeYield %}{{ r.recipeYield }} · {% endif %} {{ r.dateUpdated[:10] if r.dateUpdated else '' }}
{% if r.tags %}
{% for t in r.tags[:4] %}{{ t.name }}{% endfor %}
{% endif %}
{% endfor %}
{% if page > 1 %}← prev{% endif %} {% if page < pages %}next →{% endif %}
{% endif %} {% endblock %}