{% extends 'base.html' %} {% load static %} {% block main_content %} {% if not recipes %}

There are currently no recipes available.

{% else %}
{% for recipe in recipes %}
{% if recipe.image_url %} recipe image {% else %} recipe image {% endif %}

{{ recipe.title }}

Cooking time: {{ recipe.cooking_time }}min.

{{ recipe.instructions|truncatechars:35 }}

{% endfor %}
{% endif %} {% endblock %}