blob: 5fb8bcbdab2d0fca92d195435cc18e205ce3bf9e (
plain)
1
2
3
4
5
6
7
|
{% extends "layouts/app.twig" %}
{% block title %}{% if status == 404 %}{{ __("Page not found") }}{% else %}Error {{ status }}{% endif %}{% endblock %}
{% block content %}
<div class="alert alert-info">{{ content }}</div>
{% endblock %}
|