-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (55 loc) · 2.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en" xmlns:fb="http://ogp.me/ns/fb#">
<head>
<meta charset="UTF-8">
<meta property="og:image" content="http://toulouse.lighting/data/preview.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@laurent35240">
<meta name="twitter:creator" content="@laurent35240">
<meta name="twitter:title" content="Toulouse lighting">
<meta name="twitter:description" content="Interactive map of lights in Toulouse">
<meta name="twitter:image" content="http://toulouse.lighting/data/preview.png">
<title>Toulouse Lighting</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/bootstrap_slate.css"/>
<link rel="stylesheet" href="bower_components/leaflet/dist/leaflet.css" />
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-offset-2">
<h1>Toulouse lighting</h1>
<p>Just having some fun with lights in the pink city.</p>
</div>
</div>
<div id="toulouseMap"></div>
<div class="row">
<div class="col-md-offset-2">
<div class="btn-group toolbar">
<a class="btn btn-default" href="#" id="crossLink">Toggle occitane cross</a>
<a class="btn btn-default" href="#" id="songLink">Toggle music</a>
</div>
</div>
</div>
<footer class="footer">
<a href="https://github.com/laurent35240/toulouse-lights" target="_blank">Github</a> -
<a href="https://github.com/laurent35240/toulouse-lights#credits" target="_blank">Credits</a> -
<a href="https://github.com/laurent35240" target="_blank">@laurent35240</a>
</footer>
</div>
<script src="bower_components/leaflet/dist/leaflet.js"></script>
<script src="bower_components/glayers.leaflet/L.CanvasLayer.js"></script>
<script src="bower_components/jquery/dist/jquery.slim.min.js"></script>
<script src="bower_components/fetch/fetch.js"></script>
<script src="js/main.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-87286877-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>