10 lines
184 B
Twig
10 lines
184 B
Twig
{% extends 'base' %}
|
|
|
|
{% block content_wrapper %}
|
|
{% if page.intro_text %}
|
|
<p class="max-w-lg">{{ page.intro_text }}</p>
|
|
{% endif %}
|
|
|
|
{{ parent() }}
|
|
{% endblock %}
|