{% if title %}

{{ title }}

{% endif %} {% if courses %}
    {% for course in courses %}
  • {{ course.name }}

    {% if course.description %}
    {{ course.description|safe }}
    {% endif %}
    {% if course.price %}{{ course.price }}{% endif %}
  • {% endfor %}
{% else %}

Add courses to start composing this menu.

{% endif %}