{% extends 'layout.html.twig' %}
{% block title %}{{ parent() }} - Geschichte{% endblock %}
{% block content %}
<section class="hero is-large has-fade-to-white" style="background-image: url({{ asset('build/images/frontend/history/gebaeude-hintergrund-1920.jpg') }}); background-repeat: no-repeat; background-position: center center;background-size: cover;">
<div class="hero-body">
{# <div class="container">
<h1 class="title">
Large title
</h1>
<h2 class="subtitle">
Large subtitle
</h2>
</div> #}
</div>
</section>
<section class="section is-medium">
<div class="container">
<div class="timeline is-centered-desktop">
{% for event in events %}
<header class="timeline-header">
<span class="tag is-large is-primary">{{ event.year }}</span>
</header>
<div class="timeline-item">
<div class="timeline-content">
<div class="box">
<h2 class="title is-3">{{ event.title }}</h2>
<p>{{ event.description }}</p>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</section>
{% endblock %}