-
Notifications
You must be signed in to change notification settings - Fork 151
/
index.html
51 lines (44 loc) · 1.86 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
<!doctype html>
<!--[if (gte IE 9)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!-->
<html class="ie">
<!--<![endif]-->
<html>
<head>
<meta charset="utf-8" />
<title>blade-轻webapp框架</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta content="telephone=no" name="format-detection" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<link href="http://webresource.c-ctrip.com/styles/h5/common/main.css" rel="stylesheet" type="text/css" />
<link href="res/style/style.css" rel="stylesheet" type="text/css" />
</head>
<body onselectstart="return false">
<div style="height: 48px;">
<header>
<h1>
blade导航</h1>
</header></div>
<section class="p10">
<ul class="list_st_border carlist carindex_20140414">
<li onclick="window.location='helloworld/index.html';">
<h2><a href="helloworld/index.html" style=" color: #105cb6; font-weight: bold; ">helloworld-简单MVC的实现</a> </h2>
<div>
<a href="helloworld/index.html">简单实现单页面MVC的切换,以ID作为键值</a></div>
</li>
<li onclick="window.location='demo/dest.html';">
<h2><a href="demo/dest.html" style=" color: #105cb6; font-weight: bold;">公用组件-组件及通用功能</a> </h2>
<div>
<a href="demo/dest.html">简单实现webapp基本UI以及通用工具</a></div>
</li>
<li onclick="window.location='tank/index.html';">
<h2><a href="tank/index.html" style=" color: #105cb6; font-weight: bold;">验证View-坦克大战</a> </h2>
<div>
<a href="tank/index.html">验证View MVC与继承,坦克大战</a></div>
</li>
</ul>
</section>
<script type="text/javascript">
window.location = 'demo/debug.html';
</script>
</body>
</html>