-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Venture Logr</title>
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
<script src="node_modules/bulma-calendar/dist/js/bulma-calendar.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
<link href="node_modules/bulma-calendar/dist/css/bulma-calendar.min.css" rel="stylesheet">
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.53.1/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.53.1/mapbox-gl.css' rel='stylesheet' />
</head>
<body>
<nav class="navbar has-background-info" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a id="logo" class="navbar-item is-size-3 has-text-light is-family-secondary">Venture Logr</a>
<!-- navbar items, navbar burger... -->
</div>
</nav>
<section class="section">
<div id="main-container" class="container-fluid">
<!-- we can append children to container or section, depending on how we want the styling to be -->
</div>
</section>
<script src='src/config.js'></script>
<script type="text/javascript" src="src/HTMLHelper.js"></script>
<script type="text/javascript" src="src/Trip.js"></script>
<script type="text/javascript" src="src/Entry.js"></script>
<script type="text/javascript" src="src/Photo.js"></script>
<script type="text/javascript" src="src/index.js"></script>
<script type="text/javascript">
document.querySelector('#logo').addEventListener('click', () => {HTMLHelper.home()})
</script>
</body>
</html>