-
Notifications
You must be signed in to change notification settings - Fork 34
/
index.html
41 lines (39 loc) · 1.53 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Conduit</title>
<!-- Import Ionicon icons & Google Fonts our Bootstrap theme relies on -->
<link href="//code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=Titillium+Web:700|Source+Serif+Pro:400,700|Merriweather+Sans:400,700|Source+Sans+Pro:400,300,600,700,300italic,400italic,600italic,700italic"
rel="stylesheet" type="text/css">
<!-- Import the custom Bootstrap 4 theme from our hosted CDN -->
<link rel="stylesheet" href="//demo.productionready.io/main.css">
<style>
.modal-backdrop.show { opacity: 0.5; z-index: 1040 !important; }
.modal-open { position: absolute; width: 100% }
.modal-dialog { z-index: 1100 !important; }
</style>
</head>
<body>
<nav class="navbar navbar-light">
<div class="container">
<a class="navbar-brand" href="#">conduit</a>
<div id="header" />
</div>
</nav>
<div id='my-app'></div>
<footer>
<div class="container">
<a href="#" class="logo-font">conduit</a>
<span class="attribution">
An interactive learning project from <a href="https://thinkster.io">Thinkster</a>. Code & design licensed under MIT.
</span>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="https://unpkg.com/apprun/dist/apprun-dev-tools.js"></script>
<script src="https://unpkg.com/apprun"></script>
<script src='app.js'></script>
</body>
</html>