1 {% extends '@RapsysAir/body.html.twig' %}
3 <article id="dashboard">
5 <h2><a href="{{ canonical }}">{{ title }}</a></h2>
6 <p>{{ description }}</p>
9 {% if calendar is defined and calendar %}
10 <div class="grid calendar seven">
11 {% for date, day in calendar %}
12 <section class="{{ day.class|join(' ') }}">
13 <h3>{{ day.title }}</h3>
14 {% if day.sessions is not empty %}
16 {% for session in day.sessions %}
17 <li class="{{ session.class|join(' ') }}">
18 <a href="{{ session.link }}" title="{{ session.title }}">
19 <span>{{ session.start|intldate('none', 'short') }}</span>
20 <span class="reducible">{{ session.location.title }}</span>
21 <span class="temperature"{% if session.temperature.title is defined and session.temperature.title %} title="{{ session.temperature.title }}"{% endif %}><span class="glyph">{{ session.temperature.glyph }}</span></span>
22 <span>{{ session.stop|intldate('none', 'short') }}</span>
23 <span class="reducible">{% if session.application.user.title is defined and session.application.user.title %}{{ session.application.user.title }}{% endif %}</span>
24 <span class="rain"{% if session.rain.title is defined and session.rain.title %} title="{{ session.rain.title }}"{% endif %}><span class="glyph">{{ session.rain.glyph }}</span></span>
25 {% if session.rate is defined and session.rate %}
26 <span class="rate" title="{{ session.rate.title }}">{% if session.rate.rate is defined and session.rate.rate %}{{ session.rate.rate }} {% endif %}<span class="glyph">{{ session.rate.glyph }}</span></span>
30 <span class="reducible">{{ session.location.zipcode }} {{ session.location.city }}</span>
41 {{ include('@RapsysAir/form/_toolbox.html.twig') }}
44 {{ include('@RapsysAir/default/_location.html.twig') }}