{% extends "base.html" %} {% block content %}

📚 My Collections

{% if not collections %}
📂

No collections yet. Create one to organize your recipes!

{% else %}
{% for c in collections %}
{% if c.description %}

{{ c.description[:100] }}{% if c.description|length > 100 %}…{% endif %}

{% endif %}
{% if c.preview_titles %}
    {% for t in c.preview_titles %}
  • • {{ t }}
  • {% endfor %} {% if c.recipe_count > 4 %}
  • … and {{ c.recipe_count - 4 }} more
  • {% endif %}
{% endif %}
{{ c.recipe_count }} recipe{{ 's' if c.recipe_count != 1 else '' }}
{% endfor %}
{% endif %}
{% endblock %}