layout.hbs
3.25 KB
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
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>{{title}}</title>
<link href="/css/style.default.css" rel="stylesheet">
<link rel="stylesheet" href="/css/codemirror/codemirror.css" />
<link rel="stylesheet" href="/css/codemirror/theme/ambiance.css">
<link href="/css/morris.css" rel="stylesheet">
<link href="/css/select2.css" rel="stylesheet" />
<link href="/css/jquery.gritter.css" rel="stylesheet" />
<link href="/css/style.datatables.css" rel="stylesheet">
<link href="/css/dataTables.responsive.css" rel="stylesheet">
<link href="/css/custom.css" rel="stylesheet">
<link href="/css/uploadfile.css" rel="stylesheet">
<link rel="stylesheet" href="/css/daterangepicker.css">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<script src="/js/jquery-1.11.1.min.js"></script>
</head>
<body>
{{>common/header}}
<section>
<div class="mainwrapper">
{{>common/menu}}
<!-- leftpanel -->
<div id="pjax-container" class="mainpanel">
{{{body}}}
</div>
<!-- mainpanel -->
</div>
<!-- mainwrapper -->
</section>
<script src="/js/jquery.pjax.js"></script>
<script src="/js/jquery-migrate-1.2.1.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/modernizr.min.js"></script>
<script src="/js/pace.min.js"></script>
<script src="/js/retina.min.js"></script>
<script src="/js/jquery.cookies.js"></script>
<script src="/js/jquery.form.min.js"></script>
<script src="/js/jquery.uploadfile.min.js"></script>
<script src="/js/flot/jquery.flot.min.js"></script>
<script src="/js/flot/jquery.flot.resize.min.js"></script>
<script src="/js/flot/jquery.flot.spline.min.js"></script>
<script src="/js/jquery.sparkline.min.js"></script>
<script src="/js/morris.min.js"></script>
<script src="/js/raphael-2.1.0.min.js"></script>
<script src="/js/bootstrap-wizard.min.js"></script>
<script src="/js/jquery.dataTables.min.js"></script>
<script src="/js/dataTables.bootstrap.js"></script>
<script src="/js/dataTables.responsive.js"></script>
<script src="/js/select2.min.js"></script>
<script src="/js/jquery.gritter.min.js"></script>
<script src="/assets/layer/layer.js"></script>
<script src="/assets/layer/layer.util.js"></script>
<script src="/js/socket.io-1.4.5.js"></script>
<script src="/js/codemirror/codemirror.js"></script>
<script src="/js/custom.js"></script>
<script src="/js/bootstrap-modal.js"></script>
<script type="text/javascript" src="//cdn.jsdelivr.net/momentjs/latest/moment.min.js"></script>
<script src="/js/daterangepicker.js"></script>
<script>
$(function(){
// $('.nav-menu').pjax('a', '#pjax-container', {push: false});
$.pjax.disable();
});
</script>
</body>
</html>