blessing-skin-server/resources/views/admin/base.twig

28 lines
782 B
Twig
Raw Normal View History

2019-09-17 23:10:44 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
{{ include('shared.head') }}
<title>{% block title %}{% endblock %} - {{ site_name }}</title>
</head>
<body class="hold-transition {{ color_scheme }} sidebar-mini">
<div class="wrapper">
{{ include('shared.header') }}
{{ include('shared.sidebar', {scope: 'admin'}) }}
<div class="content-wrapper">
<section class="content-header">
<h1>{{ block('title') }}</h1>
</section>
<section class="content">
{% block content %}{% endblock %}
</section>
</div>
2019-09-18 23:06:48 +08:00
<footer class="main-footer">
{{ include('shared.copyright') }}
</footer>
2019-09-17 23:10:44 +08:00
</div>
{% block before_foot %}{% endblock %}
{{ include('shared.foot') }}
</body>
</html>