{% extends "base.html" %} {% block title %}Recipes - Cook{% endblock %} {% block content %}
{% if !breadcrumbs.is_empty() %} {% endif %}

{{ current_name }}

{{ tr.t("new-recipe") }}
{% match todays_menu %} {% when Some with (menu) %}
📋

{{ tr.t("todays-menu-title") }}

{{ menu.date_display }}

{{ tr.t("todays-menu-from") }}: {{ menu.menu_name }}

{{ tr.t("todays-menu-view") }}
{% when None %} {% endmatch %}
{% for item in items %} {% if item.is_directory %}
📁

{{ item.name }}

{% match item.count %} {% when Some with (count) %} {{ count }} recipes {% when None %} {% endmatch %}
{% else %} {% match item.image_path %} {% when Some with (img) %}
{{ item.name }}
{% endblock %}