{% extends 'base.html.twig' %}
{% block title %}Portfolio -- TimeLine!{% endblock %}
{% block content %}
<div class="timelines">
Historique
</div>
<div class="timeline">
{% for item in timelines %}
{% if loop.index is not divisible by(2) %}
<div class="timeline__component">
<div class="timeline__date timeline__date--right">
{{item.date|format_date(locale="fr")}} -- {{ item.date|format_date(locale="fr") }}
</div>
</div>
<div class="timeline__middle">
<div class="timeline__point"></div>
</div>
<div class="timeline__component timeline__component--bg">
<h2 class="timeline__title">
{{ item.label }}
</h2>
<p class="timeline__paragraph">
{{ item.description }}
</p>
</div>
{% else %}
<div class="timeline__component timeline__component--bg">
<h2 class="timeline__title">
{{ item.label }}
</h2>
<p class="timeline__paragraph">
{{ item.description }}
</p>
</div>
<div class="timeline__middle">
<div class="timeline__point"></div>
</div>
<div class="timeline__component">
<div class="timeline__date">
{{item.date|format_date(locale="fr")}} -- {{ item.date|format_date(locale="fr") }}
</div>
</div>
{% endif %}
{% endfor %}
</div>
{% endblock %}