openclassify/addons/default/visiosoft/defaultadmin-theme/resources/views/layouts/default.twig
2021-06-21 12:24:45 +03:00

50 lines
1.4 KiB
Twig

<!doctype html>
<html lang="{{ config('app.locale') }}">
<head>
{% include "theme::partials/metadata" %}
{% block styles %}{% endblock %}
</head>
<body class="variant-{{ random(8) }}{{ locale().isRtl() ? ' rtl' }} display--{{ preference_value('visiosoft.theme.defaultadmin::display', 'default') }} sidebars--{{ preference_value('visiosoft.theme.defaultadmin::sidebars', 'default') }}"
data-variants="8">
{#{% include "theme::partials/push" %}#}
{#{% include "theme::partials/brand" %}#}
{#{% include "theme::partials/navbar" %}#}
{#{% include "theme::partials/header" %}#}
<section id="app">
{% include "theme::partials/topbar" %}
{% include "theme::partials/sidebar" %}
{% include "theme::partials/menu" %}
<main id="main" style="min-height: 1500px;">
{{ breadcrumb() }}
{% if trans('module::addon.info') != 'module::addon.info' %}
<div class="page-info m-2 small text-white alert rounded">{{ trans('module::addon.info') }}</div>
{% endif %}
<div class="container-fluid">
{% include "theme::partials/messages" %}
{% include "theme::partials/buttons" %}
</div>
{% block content %}{% endblock %}
</main>
{% include "theme::partials/footer" %}
{% include "theme::partials/modals" %}
</section>
{% include "theme::partials/assets" %}
</body>
</html>