-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtestEN.html
executable file
·103 lines (88 loc) · 5.08 KB
/
testEN.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>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-163484557-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-163484557-2');
</script>
<title>COVID PCR Testing Locations in Croatia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<meta property="og:title" content="COVID PCR Testing Locations in Croatia">
<meta property="og:site_name" content="koronatestiranje.com">
<meta property="og:url" content="https://koronatestiranje.com/en.html">
<meta property="og:description" content="This website maps COVID PCR testing locations in Croatia. This is an independent project and is not associated with the Croatian Government.">
<meta property="og:type" content="article">
<meta property="og:image" content="https://github.com/mejs/koronatestiranje/raw/master/img/map.png">
<meta charset="UTF-8">
<link rel = "stylesheet"
type = "text/css"
href = "style.css" />
</head>
</head>
<body>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="navbar" id=myNavbar>
<a href="https://koronatestiranje.com" class="active">Map</a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdVL_-kXc9spQkppk17abcPTB24p8GuyOZ3WYcdFubcXLJPHA/viewform?usp=sf_link" target="_blank">Report new info</a>
<button id="myBtn">About</button>
<a href="https://github.com/mejs/koronatestiranje" target="_blank">GitHub</a>
<a href="https://koronatestiranje.com" class="HR"> HR</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
<!-- The Modal -->
<div class="modal" id="myModal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<p>This website shows COVID PCR testing locations in Croatia. This is an independent project and is not associated with the Croatian Government.<p>
<p>The main source of information is the <a href="https://www.koronavirus.hr/testing-centers-in-croatia/764" target="_blank">Official Croatian Government coronavirus website</a>, except when locations are not available on the official website, but can be independently confirmed. In those cases, the information provided is sourced from the respective institution’s website, email or phone. This map is for informational use only, and we don’t guarantee the information is correct; we advise contacting the testing centres directly, even when booking is not required.</p>
<p><a class="info" href="https://medium.com/@vladimirvince/o-koronatestiranje-com-mapi-covid-testnih-centara-u-rh-d7bd3bce14eb" target="_blank">Medium article about the project (in Croatian)</a> | <a class="info" href="https://github.com/mejs/koronatestiranje" target="_blank">GitHub repository</a> | <a href="https://twitter.com/koronatestiran1" target="_blank">Twitter</a></p>
<p><img src="img/green.png"> Testing by request possible
<p><img src="img/orange.png"> Doctor's referral required
<p>If you would like to join the project and help with verifying the information, send an email to vladimirvince at gmail.com or DM me on Twitter <a href="https://twitter.com/mejs" style="display: inline;" target="_blank">@mejs</a> and we'll add you to the project's Slack.
<p> <a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc/4.0/88x31.png" /></a><br /><a href="https://vladovince.com" target="_blank">Vlado Vince</a> 2020.</p>
</div>
</div>
<div class="content">
<iframe allowfullscreen scrollwheel='true' src="https://umap.openstreetmap.fr/en/map/covid-pcr-testing-locations-in-croatia-live_494098?scaleControl=false&miniMap=false&scrollWheelZoom=true&zoomControl=true&allowEdit=false&moreControl=false&searchControl=false&tilelayersControl=false&embedControl=false&datalayersControl=false&onLoadPanel=undefined&captionBar=false"></iframe>
</div>
<script>
// Get the modal
var modal = document.getElementById("myModal");
// Get the button that opens the modal
var btn = document.getElementById("myBtn");
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks the button, open the modal
btn.onclick = function() {
modal.style.display = "block";
}
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
function myFunction() {
var x = document.getElementById("myNavbar");
if (x.className === "navbar") {
x.className += " responsive";
} else {
x.className = "navbar";
}
}
</script>
</body>
</html>