{% extends 'base.html.twig' %} {% block title %}Hello {{ controller_name }}!{% endblock %} {% block body %}
{{ include('home/includes/calendar.html.twig') }}

Planificació


{% for i in range(1, week_offset-1) %}
{% endfor %} {% for key,day in days %}
{{key}}
{% if calendar_pois[key] is defined %} {% for cal in calendar_pois[key] %} {{cal.name}} {% endfor %} {% endif %}
{% endfor %}

Llocs d'interès, transport, etc...


Tots {% for poi_type in poi_type_list %} {{poi_type.name}} {% endfor %}


{% for point in points %} {{ include('home/includes/card.html.twig', { 'point': point }) }} {% endfor %}
{% endblock %} {% block javascripts %} {% endblock %}