forked from paraboul/mapchecking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 2.1 KB
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 2.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico" />
<link rel="canonical" href="https://crowd-counter.lab.imedd.org/">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta name="author" content="Anthony Catel & Sociality"/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://crowd-counter.lab.imedd.org/" />
<meta property="og:image" content="https://crowd-counter.lab.imedd.org/socialimage.png" />
<meta property="og:site_name" content="Crowd Counter" />
<title>Μετρητής Πλήθους - iMEdD</title>
<meta name="description" content="Ο μετρητής πλήθους σας επιτρέπει, αφού ορίσετε μία περιοχή στον χάρτη, να εκτιμήσετε πόσα άτομα θα μπορούσαν δυνητικά να χωρέσουν σε αυτή, ανάλογα με την πυκνότητα πληθυσμού ανά τετραγωνικό μέτρο." />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<div id="app" class="antialiased text-gray-800 min-h-screen flex"></div>
<script type="module" src="/src/main.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script>
if(typeof window !== 'undefined') {
let params = window.location.href.split('/');
if(params[params.length-1] == 'en' || params[params.length-2] == 'en') {
document.title = "Crowd Counter - iMEdD"
document.head.querySelector('meta[name="description"]').content = "Crowd Counter allows you, after defining an area on the map, to estimate how many people could fit in it, depending on the population density per square meter.";
}
}
</script>
</body>
</html>