41 lines
1.7 KiB
HTML
41 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{%- block head %}
|
|
<title>{% block title %}{% endblock title %}</title>
|
|
{%- block metas %}
|
|
<meta charset="UTF-8">
|
|
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
|
|
{%- endblock metas %}
|
|
{%- block styles %}
|
|
<!-- bootstrap 3.0.2 -->
|
|
<link href="{{ adminlte_find_resource('css/bootstrap.css', cdn='local') }}" rel="stylesheet" type="text/css" />
|
|
<!-- font Awesome -->
|
|
<link href="{{ adminlte_find_resource('css/font-awesome.css', cdn='local') }}" rel="stylesheet" type="text/css" />
|
|
<!-- Ionicons -->
|
|
<link href="{{ adminlte_find_resource('css/ionicons.css', cdn='local') }}" rel="stylesheet" type="text/css" />
|
|
<!-- Theme style -->
|
|
<link href="{{ adminlte_find_resource('css/AdminLTE.css', cdn='local', use_minified=False) }}" rel="stylesheet" type="text/css" />
|
|
<!-- Skin -->
|
|
<link href="{{ adminlte_find_resource('css/skins/skin-blue.min.css', cdn='local', use_minified=False) }}" rel="stylesheet" type="text/css" />
|
|
{%- endblock styles %}
|
|
{%- endblock head %}
|
|
</head>
|
|
|
|
<body class="{% block bodytag %}{% endblock %}">
|
|
{% block body %}{% endblock %}
|
|
|
|
{% block tail %}{% endblock %}
|
|
|
|
{% block scripts %}
|
|
<!-- jQuery 2.0.2 -->
|
|
<script src="{{ adminlte_find_resource('jquery.js', cdn='jquery') }}"></script>
|
|
<!-- Bootstrap -->
|
|
<script src="{{ adminlte_find_resource('js/bootstrap.js', cdn='local') }}"></script>
|
|
<!-- AdminLTE App -->
|
|
<script src="{{ adminlte_find_resource('js/AdminLTE/app.js', cdn='local', use_minified=False) }}"></script>
|
|
{%- endblock scripts %}
|
|
|
|
</body>
|
|
</html>
|