mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
45 lines
1.2 KiB
Twig
45 lines
1.2 KiB
Twig
<!doctype html>
|
|
|
|
<!--[if lt IE 7]>
|
|
<html class="nojs ms lt_ie7" lang="{{ config('app.locale') }}"><![endif]-->
|
|
<!--[if IE 7]>
|
|
<html class="nojs ms ie7" lang="{{ config('app.locale') }}"><![endif]-->
|
|
<!--[if IE 8]>
|
|
<html class="nojs ms ie8" lang="{{ config('app.locale') }}"><![endif]-->
|
|
<!--[if gt IE 8]>
|
|
<html class="nojs ms" lang="{{ config('app.locale') }}"><![endif]-->
|
|
|
|
<html lang="{{ config('app.locale') }}">
|
|
|
|
<head>
|
|
{% include "visiosoft.theme.base::partials/metadata" %}
|
|
{% block styles %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{% include "visiosoft.theme.base::partials/header" %}
|
|
|
|
{{ addBlock('layouts/default/section')|raw }}
|
|
<main id="main">
|
|
<div class="container">
|
|
|
|
{% include "visiosoft.theme.base::partials/messages" %}
|
|
|
|
{% if (request_path() == '/') %}
|
|
{% include "visiosoft.theme.base::index/default" %}
|
|
{% else %}
|
|
{% block content %}{% endblock %}
|
|
{% endif %}
|
|
|
|
</div>
|
|
</main>
|
|
|
|
{% include "visiosoft.theme.base::partials/offline" %}
|
|
|
|
{% include "visiosoft.theme.base::partials/footer" %}
|
|
{% include "visiosoft.theme.base::partials/assets" %}
|
|
{% include "visiosoft.theme.base::partials/settings" %}
|
|
|
|
</body>
|
|
</html> |