15 lines
311 B
Twig
15 lines
311 B
Twig
{#
|
|
/**
|
|
* Generic Page Template
|
|
*/
|
|
#}
|
|
<div class="layout-container">
|
|
{% include directory ~ '/templates/includes/header.html.twig' %}
|
|
|
|
<main role="main" class="container" style="padding: 100px 0;">
|
|
{{ page.content }}
|
|
</main>
|
|
|
|
{% include directory ~ '/templates/includes/footer.html.twig' %}
|
|
</div>
|