-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (44 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>ko.router</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.css" rel="stylesheet"/>
<link href="css/Site.css" rel="stylesheet"/>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a href="/">Translations</a>
</div>
</div>
</div>
<div class="container body-content">
<div id="page" data-bind="component: { name: component}"></div>
<h2>
Projects
</h2>
<table class="table">
<tr>
<td>
<a href="/access">ICM Capital Access</a>
</td>
<td>
<a href="/access/edit"> Edit ICM Capital Access</a>
</td>
<td>
<a href="/access/edit/new">new</a>
</td>
</tr>
</table>
<hr />
<footer>
<p>© Application</p>
</footer>
</div>
<script src="/scripts/require.config.js"></script>
<script data-main="/scripts/app/_run.js" src="http://requirejs.org/docs/release/2.1.22/minified/require.js"></script>
</body>
</html>