-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (26 loc) · 790 Bytes
/
index.html
File metadata and controls
32 lines (26 loc) · 790 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
26
27
28
29
30
31
32
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="vendor/assets/css/reset.css" type="text/css" />
<link rel="stylesheet" href="assets/css/main.css" type="text/css" />
</head>
<body>
<div class="container">
<div class="build-link"><a href="build.html">Edit</a></div>
<div class="layout layout-frames">
</div>
</div>
<script src="vendor/assets/js/jquery.js"></script>
<script src="vendor/assets/js/query-param.js"></script>
<script src="assets/js/main.js"></script>
<script>
$(function() {
var view = new FrameView($('.container .layout')),
params = getQueryParams(document.location.search);
view.render(params.layout, params.url, params.title);
});
</script>
</body>
</html>