-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (27 loc) · 831 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>DummyAPI: Mocked Backend UI</title>
<!-- Application styles. -->
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="container">
<!-- Header -->
<div class="row-fluid">
<div class="span12">
<h1><a href="/">DummyAPI</a> on <i id="current_backend">localhost</i></h1>
<div id="upper_context"></div>
<hr/>
</div>
</div>
<!-- Main container. -->
<div role="main" id="main" class="row-fluid"></div>
</div>
<!-- Application source. -->
<script data-main="js/app.js" src="js/libs/require.js"></script>
</body>
</html>