-
Notifications
You must be signed in to change notification settings - Fork 4
/
common.html
47 lines (44 loc) · 1.55 KB
/
common.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
<!DOCTYPE html>
<html lang="zh-CN">
<% content %>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="keywords" content="<% content 'keywords' %>">
<meta name="description" content="<% content 'description' %>">
<title><% content 'title' %></title>
<link rel="shortcut icon" type="image/x-icon" href="pics/facicon.ico"/>
<!--build:css css/style.css-->
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./node_modules/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="./css/shurenyun.css">
<link rel="stylesheet" href="./css/login.css">
<!--endbuild-->
</head>
<body>
<div class="homepage">
<% content 'bodyContent' %>
</div>
<!-- rev-hash -->
<script src="conf.js"></script>
<!-- end -->
<!--build:js js/script.js-->
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.js"></script>
<script src="starfield.js"></script>
<script src="service.js"></script>
<script src="common.js"></script>
<!--endbuild-->
<!-- Baidu -->
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "//hm.baidu.com/hm.js?cd74c0fcc0c51aecc3bb276315e35e6a";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
</body>
</html>