engelsystem/resources/views/errors/default.twig

22 lines
619 B
Twig

{% extends "layouts/app.twig" %}
{% block title %}{{ __('page.error.title', [status]) }}{% endblock %}
{% block content %}
<div class="container">
{% block content_container %}
<div class="alert alert-info" role="alert">
{% block content_headline %}
<h2>{% block content_headline_text %}{{ __('page.error.title', [status]) }}{% endblock %}</h2>
{% endblock %}
{% block content_text %}
{{ __(content) }}
{% endblock %}
</div>
{% endblock %}
</div>
{% endblock %}