10 lines
275 B
Twig
Executable File
10 lines
275 B
Twig
Executable File
{% extends "@themes/"~template~"/html/base.html.twig" %}
|
|
|
|
{% block content %}
|
|
<div class="well text-center">
|
|
{{ message|raw }}
|
|
{% if content is defined %}
|
|
<div class="text-left">{{ content|raw }}</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %} |