-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.html
79 lines (79 loc) · 3.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% block title %}{% endblock %}
{% load staticfiles %}
<!-- Bootstrap core CSS -->
<link href="{% static "css/bootstrap.min.css" %}" rel="stylesheet">
<link href="{% static "fonts/css/font-awesome.min.css" %}" rel="stylesheet">
<link href="{% static "css/animate.min.css" %}" rel="stylesheet">
<!-- Custom styling plus plugins -->
<link href="{% static "css/custom.css" %}" rel="stylesheet">
<link href="{% static "css/icheck/flat/green.css" %}" rel="stylesheet">
<script src="{% static "js/jquery.min.js" %}"></script>
{% block specific_css %}{% endblock %}
<!--[if lt IE 9]>
<script src="../assets/js/ie8-responsive-file-warning.js"></script>
<![endif]-->
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="nav-md">
<div class="container body">
<div class="main_container">
<div class="col-md-3 left_col">
<div class="left_col scroll-view">
<div class="navbar nav_title" style="border: 0;">
<a href="index.html" class="site_title"><i class="fa fa-paw"></i> <span>运维主机管理</span></a>
</div>
<div class="clearfix"></div>
<!-- menu prile quick info -->
<div class="profile">
<div class="profile_pic">
<img src="/static/images/img.jpg" alt="..." class="img-circle profile_img">
</div>
<div class="profile_info">
<span>欢迎您,</span>
<h2>管理员</h2>
</div>
</div>
<!-- /menu prile quick info -->
<br />
{% include 'sidebar.html' %}
</div>
</div>
{% include 'nav.html' %}
<!-- page content -->
<div class="right_col" role="main">
{% block content %}{% endblock %}
{% include "copyright.html" %}
</div>
<!-- /page content -->
</div>
</div>
<div id="custom_notifications" class="custom-notifications dsp_none">
<ul class="list-unstyled notifications clearfix" data-tabbed_notifications="notif-group">
</ul>
<div class="clearfix"></div>
<div id="notif-group" class="tabbed_notifications"></div>
</div>
<script src="{% static "js/bootstrap.min.js" %}"></script>
<!-- bootstrap progress js -->
<script src="{% static "js/progressbar/bootstrap-progressbar.min.js" %}"></script>
<script src="{% static "js/nicescroll/jquery.nicescroll.min.js" %}"></script>
<!-- icheck -->
<script src="{% static "js/icheck/icheck.min.js" %}"></script>
<script src="{% static "js/custom.js" %}"></script>
<!-- pace -->
<script src="{% static "js/pace/pace.min.js" %}"></script>
{% block specific_js %}{% endblock %}
</body>
</html>