ninegate/src/cadolesuser-1.0/src/Cadoles/CoreBundle/Resources/views/base.html.twig

41 lines
1023 B
Twig
Raw Normal View History

2018-12-18 09:44:39 +01:00
<!DOCTYPE html>
<html>
{{ include('@CadolesCore/Include/head.html.twig') }}
2019-03-13 17:30:41 +01:00
<style>
{% block localstyle %}
{% endblock %}
</style>
2019-03-21 17:15:06 +01:00
<body class="{% if useheader %}body{% else %}simple{% endif %}">
2018-12-18 09:44:39 +01:00
<div id="wrapper">
2019-03-12 14:50:57 +01:00
{{ include('@CadolesCore/Include/hero.html.twig') }}
2018-12-18 09:44:39 +01:00
2019-03-21 17:15:06 +01:00
{% if useheader %}
<div id="page-wrapper" style="min-height:1200px; {% if not usesidebar %} margin:0px; {% endif %}">
2018-12-18 09:44:39 +01:00
<div class="container-fluid">
<div class="row">
2019-03-21 17:15:06 +01:00
{% endif %}
2018-12-18 09:44:39 +01:00
{% block pagewrapper %}
{% endblock %}
2019-03-21 17:15:06 +01:00
{% if useheader %}
2018-12-18 09:44:39 +01:00
</div>
</div>
</div>
2019-03-21 17:15:06 +01:00
{% endif %}
2018-12-18 09:44:39 +01:00
</div>
2019-03-12 14:50:57 +01:00
2018-12-18 09:44:39 +01:00
{{ include('@CadolesCore/Include/footer.html.twig') }}
<script>
{% block localjavascript %}
{% endblock %}
</script>
</body>
</html>