This repository has been archived by the owner on Nov 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
41 lines (41 loc) · 1.75 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 lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8" />
<title>NashViva!</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.0.3/dist/leaflet.css"
integrity="sha512-07I2e+7D8p6he1SIM+1twR5TIrhUQn9+I6yjqD53JQjFiMf8EtC93ty0/5vJTZGF8aAocvHYNEDJajGdNx1IsQ=="
crossorigin=""
/>
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/switch.css" />
</head>
<body>
<div id="navbtn">Hide Nav</div>
<nav>
<header>
<h1 class='nashviva'>NashViva!</h1>
<h2>The Swiss Army Knife For Nashville Life</h2>
</header>
<div class="app-description">
<p>Click on the switches below to see your snapshot of Nashville's amenities</p>
<aside id="deprecation-notice">
NashViva is no longer actively maintained, and data may be out of date.
<br/> </br> If you 💖 NashViva, check out <a href="https://nashview.nashville.gov">NashView</a>,
an official alternative from Metro Nashville.
</aside>
</div>
<ul id='data-toggles'></ul>
</nav>
<div id="map"></div>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js" type="text/javascript"></script>
<script src="https://unpkg.com/leaflet@1.0.3/dist/leaflet.js"
integrity="sha512-A7vV8IFfih/D732iSSKi20u/ooOfj/AGehOKq0f4vLT1Zr2Y+RX7C+w8A1gaSasGtRUZpF/NZgzSAu4/Gc41Lg=="
crossorigin="">
</script>
<script src="js/main.js" type="text/javascript"></script>
</body>
</html>