Deprecated: Constant E_STRICT is deprecated since 8.4, the error level was removed in /html/hilker-solar-dev/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated since 8.4, the error level was removed in /html/hilker-solar-dev/vendor/symfony/error-handler/ErrorHandler.php on line 76

Deprecated: Method ReflectionProperty::setAccessible() is deprecated since 8.5, as it has no effect since PHP 8.1 in /html/hilker-solar-dev/vendor/symfony/error-handler/ErrorHandler.php on line 191
Symfony Profiler

templates/frontend/about/history.html.twig line 1

Open in your IDE?
  1. {% 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 %}