forked from OpenBazaar/OpenBazaar-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (56 loc) · 2.48 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<html id="ov1">
<head>
<title>OpenBazaar</title>
<link href="css/ionicons.min.css" rel="stylesheet">
<link href="css/jquery.mCustomScrollbar.min.css" rel="stylesheet" />
<link href="css/chosen.css" rel="stylesheet">
<link href="css/colpick.css" rel="stylesheet">
<link href="css/colorbox.css" rel="stylesheet">
<link href="css/medium-editor.min.css" rel="stylesheet">
<link href="css/obBase.css" rel="stylesheet" id="obBase">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<div id="appFrame">
<div id="appBar" class="top0 alignCenter custCol-secondary"></div>
<div id="contentFrame">
<!-- Overlay is used by pageNav drop down menus and should be here in the markup so that it
properly obscures any open modals (without having to manage z-indexes). -->
<div id="overlay" class="hide"></div>
<div id="navArea">
<div id="pageNav" class="custCol-secondary"></div>
</div>
<div id="contentArea">
<div class="container custCol-background custCol-text" id="obContainer">
<div id="content"></div>
</div>
<div id="sideBar"></div>
<div id="messageModal" class="modal modal-opaque js-messageModal hide">
<!-- modal for messages -->
<div class="modal-child modal-childMain color-primary custCol-secondary padding20 custCol-text">
<div class="txt-center row10 js-messageModalTitleWrapper">
<h1 class="js-messageModal-title"></h1>
</div>
<div class="txt-center row10 js-messageModalMsgWrapper">
<p class="fontSize14 js-messageModal-message"></p>
<div class="bar barFlush bottomBar js-messageModal-btnBar hide">
<a class="btn btn-bar btn-half borderRight custCol-border textOpacity90 custCol-primary js-messageModal-btn1">
</a>
<a class="btn btn-bar btn-half textOpacity90 custCol-primary js-messageModal-btn2">
</a>
</div>
</div>
<div class="btn-corner btn-cornerTR btn-cornerTROutR btn-flushTop js-closeIndexModal">
<h2 class="ion-android-close custCol-text clickable"></h2>
</div>
</div>
</div>
<div id="statusBar"></div>
</div>
</div>
</div>
<!--TODO: modularize non-modular scripts -->
<script src="js/utils/list.min.js"></script>
<script>require('./js/start')</script>
</body>
</html>