forked from OpenBazaar/openbazaar-desktop
-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
34 lines (34 loc) · 1.31 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
<!-- This file will be run from ./.tmp/, so make paths relative to there -->
<!DOCTYPE html>
<html id="ov1" class="pre-release"><!-- remove pre-release class when released -->
<head>
<meta charset="UTF-8">
<title>Phore Marketplace</title>
<link rel="stylesheet" href="../node_modules/ionicons/css/ionicons.min.css">
<link rel="stylesheet" href="../node_modules/trumbowyg/dist/ui/trumbowyg.min.css">
<link rel="stylesheet" href="../node_modules/selectize/dist/css/selectize.css">
<link rel="stylesheet" href="../styles/lib/select2.css">
<link rel="stylesheet" href="./styles/main.css">
</head>
<body class="clrT clrS">
<div id="appFrame">
<section id="pageNavContainer"></section>
<section id="contentFrame" class="clrBr">
<div id="pageContainer"></div>
</section>
<section id="statusBar"></section>
<section id="bottomToolBarContainer"></section>
<div id="chatContainer"></div>
<div id="chatConvoContainer" class="clrP clrBr3"></div>
</div>
<script>
// install babel hooks in the renderer process
require('babel-register');
require('../js/start');
</script>
<script>
<!-- BROWSER_SYNC_PLACEHOLDER (DO NOT REMOVE OR ALTER!) -->
</script>
<script src="../js/lib/renderjson.js"></script>
</body>
</html>