-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (52 loc) · 1.84 KB
/
index.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
<!DOCTYPE html>
<html lang="zh_CN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,Chrome=1" />
<meta http-equiv="X-UA-Compatible" content="IE=9" />
<title>Brockex</title>
<link rel="stylesheet" href="/css/style.css" type="text/css" >
<link rel="stylesheet" href="/css/bootstrap.css" type="text/css" >
<script type="text/javascript" src="/js/jquery-2.1.4.js" ></script>
<script type="text/javascript" src="/js/bootstrap.js" ></script>
<script type="text/javascript" src="" ></script>
<!-- 解决placeholder -->
<script type="text/javascript" src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="js/jquery.placeholder.js"></script>
<!-- 解决border-radius -->
<script src="/js/DD_roundies.js"></script>
<script type="text/javascript">
DD_roundies.addRule('.test', '10px 10px', true);
</script>
<!-- 解决bootstrap兼容 -->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="http://apps.bdimg.com/libs/html5shiv/3.7/html5shiv.min.js"></script>
<script src="http://apps.bdimg.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<script type="text/javascript">
$(function () {
// Invoke the plugin
$('input, textarea').placeholder();
});
</script>
</head>
<body>
<div class="app">
<!--head-->
<header class="header">
<!--#include file="content/layout/header.html"-->
</header>
<!--content-->
<content class="content">
<!--#include file="content/scrollImg.html"-->
<!--#include file="content/taskbar.html"-->
<!--#include file="content/news.html"-->
</content>
<!--foot-->
<footer class="footer">
<!--#include file="content/layout/footer.html"-->
</footer>
</div>
</body>
</html>