11 lines
291 B
Twig
Executable File
11 lines
291 B
Twig
Executable File
{% extends "@themes/"~template~"/html/base.html.twig" %}
|
|
|
|
{% block content %}
|
|
<div style="width: 800px; margin: 40px auto">
|
|
{{ message|raw }}
|
|
{% if content is defined %}
|
|
<div class="text-left">{{ content|raw }}</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|