-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (21 loc) · 764 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (21 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src='knockout-3.4.0.js'></script>
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="pure-menu pure-menu-horizontal">
<ul class="pure-menu-list" data-bind="foreach: navs">
<li class="pure-menu-item" data-bind="html: $data,
click: $root.changeNav">
</li>
</ul>
</div>
<div data-bind="html: pageData">
</div>
<script src="main.js"></script>
</body>
</html>