-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (78 loc) · 4.2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!doctype html>
<html lang="fr" ng-app="dtritus">
<head>
<meta charset="utf-8">
<title>D-TRI-TUS Mobile</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="lib/Metro-UI-CSS-master/css/metro-bootstrap.css">
<link rel="stylesheet" href="css/app.css"/>
<!-- Google Analytics -->
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-19565032-6', 'gatineauouverte.org');
ga('send', 'pageview');
</script>
</head>
<body class="metro" ng-init="showAbout = false" ng-click="showAbout = false">
<div id="about" class="overlay" ng-show="showAbout" ng-click="$event.stopPropagation()" ng-cloak>
<h4>D-TRI-TUS Mobile a été créé à partir des données ouvertes de la Ville de Gatineau</h4>
<p> </p>
<ul>
Développé par:
<p> </p>
<li>
<a href="https://www.facebook.com/plalx">Alexandre Potvin Latreille</a>
<a href="https://github.com/plalx">@plalx</a>
</li>
<li>
<a href="http://daniel-lauzon.com/">Daniel Lauzon</a>
<a href="https://twitter.com/daneroo">@daneroo</a>
</li>
<li>
<a href="http://stephanefrechette.com">Stéphane Fréchette</a>
<a href="https://twitter.com/sfrechette">@sfrechette</a>
</li>
</ul>
</div>
<nav id="top-nav-bar" class="navigation-bar light" ng-controller="NavBarCtrl">
<nav class="navigation-bar-content">
<button class="element" ng-click="showAbout()">
<img id="logo" src="images/dtritus.png" alt="Logo" />
<div id="app-name">D-TRI-TUS <span>mobile</span></div>
</button>
<span class="element-divider"></span>
<div class="element input-element">
<form>
<div class="input-control text">
<input id="search-input" type="text" placeholder="Rechercher..." ng-model="searchTerm">
<!--<button class="btn-clear" ng-click="clearSearch()"></button>-->
</div>
</form>
</div>
</nav>
</nav>
<div id="page-content">
<section ng-view></section>
</div>
<footer id="page-footer" footer-in-time="{ scrollTarget: '#page-content' }">
<a href="http://gatineauouverte.org"><img id="go-logo" src="images/gatineauouverte.png" alt="Gatineau Ouverte"></a>
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://dtritus.gatineauouverte.org" data-via="GatineauOuverte" data-lang="fr" data-text="D-TRI-TUS Mobile pour vous aider à mieux trier vos déchets, matières #donneesouvertes #opendata"></a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="https://platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
</script>
</footer>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular-route.min.js"></script>
<script src="lib/angularSlidables.js"></script>
<script src="js/app.js"></script>
<script src="js/directives/directives.js"></script>
<script src="js/services/itemSvc.js"></script>
<script src="js/services/itemListModel.js"></script>
<script src="js/controllers/itemListCtrl.js"></script>
<script src="js/controllers/itemDetailsCtrl.js"></script>
<script src="js/controllers/navBarCtrl.js"></script>
<script src="js/filters/filters.js"></script>
</body>
</html>