-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexplorer.html
87 lines (81 loc) · 2.42 KB
/
explorer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Country Explorer</title>
<link rel="stylesheet" href="/fds/css/main.css" />
<link rel="stylesheet" href="./src/style.css" />
</head>
<body>
<div id="country-explorer">
<div class="box-card shadow-blue border-blue">
<div class="bg-blue-20 p-3 p-md-4">
<div class="dropdown">
<div
class="box-card-header h4 dropdown-toggle"
role="button"
id="fx-country-selector"
data-bs-toggle="dropdown"
aria-expanded="false"
>
🇩🇪 Germany
</div>
<div
class="dropdown-menu"
aria-labelledby="fx-country-selector"
></div>
</div>
<div id="fx-hint"></div>
</div>
<div class="p-3 p-md-4">
<div class="tight-margin" id="fx-stats"></div>
<div class="d-flex mt-5 align-items-end">
<span id="fx-attribution" class="text-gray-700"></span>
<a
href="#!"
class="action-link ms-auto text-nowrap"
id="fx-download-png"
target="_blank"
rel="noopener noreferrer"
>
<i class="fa fa-download"></i>
<span class="visually-hidden">Download</span>
PNG
</a>
</div>
</div>
</div>
<div
class="modal fade"
id="fx-explorer-modal"
tabindex="-1"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Modal title</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body tight-margin">
<p></p>
</div>
</div>
</div>
</div>
</div>
<script src="./src/embed.js" type="module"></script>
<script
src="./src/countryExplorer.jsx"
type="module"
data-assets="/frontex-assets/"
></script>
</body>
</html>