forked from guohongze/adminset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.html
61 lines (56 loc) · 1.86 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
<!DOCTYPE html>
<!--
This is a starter template page. Use this page to start your new project from
scratch. This page gets rid of all links and provides the needed markup only.
-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>AdminSet</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
{% include 'link_css.html' %}
{% include 'head_script.html' %}
{% block self_head_css_js %} {% endblock %}
<script>
$(document).ready(function(){
$('.loading').fadeOut();
});
</script>
</head>
<body class="hold-transition skin-yellow-light sidebar-mini">
<div class="loading"></div>
<div class="wrapper">
<!-- Main Header -->
{% include temp_name %}
<script type="text/javascript">
$('.loading').animate({'width':'10%'},50); //第一个进度节点
</script>
<!-- Left side column. contains the logo and sidebar -->
{% include 'main-sidebar.html' %}
<script type="text/javascript">
$('.loading').animate({'width':'25%'},50); //第一个进度节点
</script>
<!-- Content Wrapper. Contains page content -->
{% block content %}{% endblock %}
<!-- /.content-wrapper -->
<script type="text/javascript">
$('.loading').animate({'width':'60%'},50); //第一个进度节点
</script>
<!-- Main Footer -->
{% include 'footer.html' %}
<script type="text/javascript">
$('.loading').animate({'width':'100%'},50); //第一个进度节点
</script>
<!-- Control Sidebar -->
{% include 'control-sidebar.html' %}
<!-- /.control-sidebar -->
<!-- Add the sidebar's background. This div must be placed
immediately after the control sidebar -->
<div class="control-sidebar-bg"></div>
</div>
<!-- ./wrapper -->
</body>
{% block self_footer_js %} {% endblock %}
</html>