--- layout: "default" ---
{% if page.recipes == empty %}

Error: No recipes were processed

{% else %}
{% for recipe in page.recipes %} {% assign image = 'path,description' | create_hash: recipe.metadata.icon, recipe.description %}
{% render 'card_recipe.html', title: recipe.title, description: recipe.description, image:, star: recipe.metadata.features.status, url: recipe.url %}
{% endfor %}
{% endif %}