This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
/
base.html
executable file
·81 lines (68 loc) · 2.68 KB
/
base.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{% load static %}<!DOCTYPE html>
<html>
<head>
{% block title_outer %}
<title>{% block title %}{{ site.name }}{% endblock %}</title>
{% endblock %}
{% block meta %}
<meta charset="utf-8">
<meta http-equiv="X-UA-COMPATIBLE" content="IE=edge">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
{% endblock %}
{% block stylesheets %}
{% include 'adminlte/lib/_styles.html' %}
{% endblock %}
{% block extra_head %}{% endblock %}
</head>
<body class="{% block transition_class %}hold-transition{% endblock %} {% block skin_class %}skin-blue{% endblock %} {% block sidebar_class %}sidebar-mini{% endblock %} {% block body_class %}{% block bodyclass %}{% endblock %}{% endblock %}">
{% block body %}
<div class="wrapper">
{% block nav_header %}
{% include 'adminlte/lib/_main_header.html' %}
{% endblock %}
{% block nav_sidebar %}
{% include 'adminlte/lib/_main_sidebar.html' %}
{% endblock %}
{% block content_wrapper %}
<div class="content-wrapper">
{% block content_header %}
<section class="content-header">
{% block no_heading %}
<h1>
{% block page_name %}{% endblock %}
<div class="header-actions">
{% block page_actions %}{% endblock %}
</div>
{% block no_description %}
<small>{% block page_description %}{% endblock %}</small>
{% endblock %}
</h1>
{% block breadcrumbs %}
{# Breadcrumb implementation left to developers #}
{% endblock %}
{% endblock no_heading %}
</section>
{% endblock %}
{% block content_outer %}
<section class="content">
{% block messages %}
{% include 'adminlte/lib/_messages.html' %}
{% endblock %}
{% block content_block_wrap %}
{% block content %}{% endblock %}
{% endblock %}
</section>
{% endblock %}
</div>
{% endblock content_wrapper %}
{% block nav_footer %}
{% include 'adminlte/lib/_main_footer.html' %}
{% endblock %}
</div>
{% endblock body %}
{% block javascript %}
{% include 'adminlte/lib/_scripts.html' %}
{% endblock %}
{% block extra_foot %}{% endblock %}
</body>
</html>