-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
151 lines (126 loc) · 5.13 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html>
<head>
<!-- Made with love and solidarity during the COVID-19 pandemic of 2020. Housing is a human right. -->
<meta charset="utf-8">
<title>Find My Landlord | Montréal</title>
<meta name="description" content="Locataires montréalais: à qui appartient votre bâtiment? Trouvez votre propriétaire et ses propriétés. / Montréal renters: who owns your building? Find your landlord and find their properties.">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Open Graph tags for social media -->
<meta property="og:title" content="Find My Landlord | Montréal">
<meta property="og:description" content="Locataires montréalais: à qui appartient votre bâtiment? Trouvez votre propriétaire et ses propriétés. / Montréal renters: who owns your building? Find your landlord and find their properties.">
<meta property="og:site_name" content="Find My Landlord | Montréal">
<meta property="og:url" content="https://findmylandlord.netlify.app/">
<meta property="og:type" content="website">
<meta property="og:image" content="https://findmylandlord.netlify.app/assets/images/find-my-landlord-og-image.jpg">
<!-- Enables Twitter support -->
<meta name="twitter:card" content="summary">
<!-- Mapbox requirements -->
<script src="https://api.tiles.mapbox.com/mapbox-gl-js/v1.11.0/mapbox-gl.js"></script>
<link rel="stylesheet" href="https://api.tiles.mapbox.com/mapbox-gl-js/v1.11.0/mapbox-gl.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- <link rel="shortcut icon" href="assets/images/favicon.ico"> -->
<!-- preload essential fonts -->
<link rel="preload" href="assets/fonts/ManifoldDSA/ManifoldDSA-Medium.woff" as="font" type="font/woff" crossorigin>
<link rel="preload" href="assets/fonts/ManifoldDSA/ManifoldDSA-ExtraBold.woff" as="font" type="font/woff" crossorigin>
<link rel="preload" href="assets/fonts/FontAwesome/fa-solid-900.woff" as="font" type="font/woff" crossorigin>
</head>
<body>
<div id="map"></div>
<div id="spinner">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div id="top-container">
<div id="title">
<h2 id="app-title"></h2>
<div id="get-help">
<p id="get-help-links"></p>
<p>
<a id="switch-lang-link" href=""></a> •
<a href="javascript:;" id="legal-notice"></a>
</p>
</div>
</div>
<div id="search-input-container">
<input
id="search-input"
name="search"
type="text"
spellcheck="false"
placeholder=""
/>
<div id="clear" tabindex="0"><img src="assets/images/times-dark.svg" /></div>
<button id="search-button"></button>
</div>
<div id="search-results-container">
<div id="search-results-counter"></div>
<ul id="search-results-list"></ul>
<div id="selected-container">
<table id="info-table">
<tr id="affiliated-row">
<td id="affiliated-label"></td>
<td id="affiliated-value"></td>
</tr>
<tr id="owned-row">
<td id="owned-label"></td>
<td>
<span id="owned-value"></span>
<button id="view-on-map"></button>
</td>
</tr>
<tr id="taxpayer-row">
<td id="taxpayer-label"></td>
<td id="taxpayer-value"></td>
</tr>
<tr id="units-row">
<td id="units-label"></td>
<td id="units-value"></td>
</tr>
</table>
<button id="download-button" class="button-hover"></button>
<div id="bottom-links">
<p id="data-info-link" class="property-details-link" tabindex="0"></p>
<p id="additional-details-link" class="property-details-link" tabindex="0"></p>
<div style="clear: both;"></div>
</div>
</div>
</div>
</div>
<!-- Google Cloud Firebase -->
<script src="assets/js/firebase-app.js"></script>
<script src="assets/js/firebase-analytics.js"></script>
<script src="assets/js/firebase-auth.js"></script>
<script src="assets/js/firebase-firestore.js"></script>
<!-- jsPDF -->
<script src="assets/js/jspdf.min.js"></script>
<!-- i18next -->
<script src="assets/js/i18next.min.js"></script>
<!-- jsPDF-AutoTable -->
<script src="assets/js/jspdf.plugin.autotable.js"></script>
<!-- jsPDF fonts -->
<script src="assets/fonts/ManifoldDSA/js/ManifoldDSA-normal.js"></script>
<script src="assets/fonts/ManifoldDSA/js/ManifoldDSA-bold.js"></script>
<!-- IE helper -->
<script src="assets/js/checkIE.js"></script>
<!-- Constants -->
<script src="assets/js/constants.js"></script>
<!-- Database -->
<script src="assets/js/firebase.js"></script>
<script src="assets/js/i18n.js"></script>
<!-- search -->
<script src="assets/js/flexsearch.js"></script>
<!-- Map rendering -->
<script src="assets/js/mapbox.js"></script>
<script src="assets/js/onResize.js"></script>
<script src="assets/js/centerMap.js"></script>
<script src="assets/js/reset.js"></script>
<!-- Building selection -->
<script src="assets/js/matchAddresses.js"></script>
<script src="assets/js/attachModal.js"></script>
<script src="assets/js/getProperty.js"></script>
<script src="assets/js/createPDF.js"></script>
</body>
</html>