-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
61 lines (61 loc) · 2.21 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
<!DOCTYPE html>
<html>
<head>
<title>Dataverse Installations Around the World</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" type="image/x-icon" href="docs/images/favicon.ico" />
<link
rel="stylesheet"
href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
crossorigin=""
/>
<script
src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-GffPMF3RvMeYyc1LWMHtK8EbPv0iNZ8/oTtHPx9/cc2ILxQ+u905qIwdpULaqDkyBKgOaB57QTMg7ztg8Jm2Og=="
crossorigin=""
></script>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<div id="num-installations"></div>
<div id="mapid"></div>
<table id="installation-descriptions">
<thead>
<tr>
<th class="installation-name-header">Name</th>
<th class="installation-country-header">Country</th>
<th class="installation-year-header">Year</th>
<th class="installation-description-header">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="installation-name-suggest-add">[Your installation! 🎉🎉🎉]</td>
<td class="installation-country-suggest-add">[Country]</td>
<td class="installation-year-suggest-add">[Launched]</td>
<td class="installation-description-suggest-add">
[A description of your installation of Dataverse.] To add your
installation to the map, please create an
<a
href="https://github.com/IQSS/dataverse-installations/issues"
target="_blank"
>issue</a
>.
</td>
</tr>
</tbody>
</table>
<template id="installation-row">
<tr>
<td class="installation-name-row"></td>
<td class="installation-country-row"></td>
<td class="installation-year-row"></td>
<td class="installation-description-row"></td>
</tr>
</template>
<script src="js/map.js"></script>
<script src="js/table.js"></script>
</body>
</html>