-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (23 loc) · 769 Bytes
/
index.html
File metadata and controls
25 lines (23 loc) · 769 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Example Prototype</title>
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/main.css" rel="stylesheet">
<script data-main="assets/js/main" src="assets/js/require.js"></script>
<script>require.config({ paths: { "main": "main-built" }}); require(["main"]);</script>
</head>
<body>
<div data-bind="template: 'header'"></div>
<div class="container">
<h2>Home Page</h2>
<br/>
<p>Click the button below to update the site menu.</p>
<button class="btn btn-default" data-bind="click: updateAbout ">Update Menu</button>
<br/><br/>
</div>
<div data-bind="template: 'content'"></div>
<div data-bind="template: 'footer'"></div>
</body>
</html>