forked from yysun/apprun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (85 loc) · 4.19 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
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
88
89
90
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>AppRun</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
<link rel="stylesheet" href="demo/lib/codemirror.css">
<script src="demo/lib/codemirror.js"></script>
<script src="demo/mode/javascript/javascript.js"></script>
<script src="demo/mode/xml/xml.js"></script>
<script src="demo/mode/jsx/jsx.js"></script>
<link rel="stylesheet" type="text/css" href="demo/styles.css">
</head>
<body>
<!-- navbar -->
<nav class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">AppRun</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<!--<li class="active"><a href="#">Home</a></li>-->
<!-- <li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Hello
<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#hello">Hello World</a></li>
<li><a href="#hello-pushstate">Hello World - Push State</a></li>
<li><a href="#hello-delayed">Hello World - Delayed</a></li>
<li><a href="#hello-directive">Hello World - Directive</a></li>
</ul>
</li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Counter
<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#counter">Simple Counter</a></li>
<li><a href="#counters">Multiple Counters</a></li>
</ul>
</li>
<li><a href="#dragdrop">Pointer</a></li>
<li><a href="#animation">Animation</a></li>
<li><a href="#svg">SVG</a></li>
<li><a href="#todo">Todo</a></li> -->
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#new">What's New</a></li>
<li><a href="docs">Guide</a></li>
<li><a href="#play">Play</a></li>
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#">Examples
<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="https://github.com/samphilipd/todomvc-apprun">ToDoMVC Example</a></li>
<li><a href="https://yysun.github.io/apprun-hn">Hacker News Reader - PWA Example</a></li>
<li><a href="https://github.com/gothinkster/apprun-realworld-example-app">RealWorld Example App</a></li>
<li><a href="https://github.com/yysun/apprun-apress-book">Examples from the Apress Book</a></li>
</ul>
</li>
<li><a href="#benchmark">Benchmark</a></li>
<li><a href="https://github.com/yysun/apprun">Github</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div id="my-app"></div>
</div> <!-- /container -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js"
integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<script src="demo/app.js"></script>
</body>
</html>