openclassify/addons/default/visiosoft/restate-theme/resources/views/layouts/default.twig

35 lines
853 B
Twig

<!doctype html>
<html lang="{{ config('app.locale') }}">
<head>
{% include "visiosoft.theme.restate::partials/metadata" %}
{% block styles %}{% endblock %}
</head>
<body class="{{ (request_path() == '/') ? '' : 'body-full' }}">
{% if (request_path() == '/') %}
{% include "visiosoft.theme.restate::index/index" %}
{% else %}
{% include "visiosoft.theme.restate::partials/header" %}
<main id="main" >
<div class="container pb-3 mb-2">
{% block content %}{% endblock %}
</div>
</main>
{% include "visiosoft.theme.restate::partials/footer" %}
{% endif %}
{% include "visiosoft.theme.restate::partials/messages" %}
{% include "visiosoft.theme.restate::partials/assets" %}
{{ setting_value('visiosoft.module.advs::body_custom_space')|raw }}
{% block customjs %}{% endblock %}
</body>
</html>