{% if recipe.image %}
{% endif %}
{{ recipe.name|default(recipe.fallback_name) }}
{% if recipe.emoji %}
{{ recipe.emoji }}
{% else %}
{% endif %}
{% if recipe.desc %}
{{ recipe.desc }}
{% endif %} {% if recipe.tags %}
{% for t in recipe.tags %}
{{ tag(t.name, t.emoji) }}
{% endfor %}
{% endif %}
{% if (recipe.desc is none) and (recipe.tags is empty) %}
{% endif %}
{% if recipe.error %}
{{ t("error.parse") }}
{% endif %}