forked from borjasalguero/contacts_prototype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contacts Prototype</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- <link href='http://fonts.googleapis.com/css?family=Raleway:300' rel='stylesheet' type='text/css'> -->
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="navigation.css">
<link rel="stylesheet" type="text/css" href="app.css">
<script src="app/libs/components/threads/threads.js"></script>
<script src="threads-manager.js"></script>
<script src="navigation.js"></script>
<script src="app.js"></script>
</head>
<body>
<div id="list" class="panel main">
<iframe id="list-iframe" src="view/list/index.html">
</iframe>
</div>
<div id="detail" class="panel">
<iframe id="detail-iframe" src="view/detail/index.html">
</iframe>
</div>
<div id="settings" class="panel">
<iframe id="settings-iframe" src="view/settings/index.html">
</iframe>
</div>
<section id="mirror-current" class="mirror">
</section>
<section id="mirror-future" class="mirror">
</section>
</body>
</html>