{% extends "base_with_header.html" %}
{% macro recipe_item(id, title, class) %}
{% if title == "" %}
{# TODO: Translation #}
No title defined
{% else %}
{{ title }}
{% endif %}
{% endmacro %}
{% block main_container %}
{% block content %}{% endblock %}
{% endblock %}