-
Notifications
You must be signed in to change notification settings - Fork 4
/
privacy.php
39 lines (38 loc) · 1.15 KB
/
privacy.php
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
<?php
require_once "_intl.php";
header("Vary: Accept-Language");
?>
<!DOCTYPE html>
<html lang="<?php echo $language; ?>">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title><?php echo $strings["about_title_privacy_statement"]; ?></title>
<link rel="stylesheet" href="res/style.css"/>
<link rel="icon" href="res/favicon.svg">
<?php
foreach ($supportedLanguages as $lang) {
echo "<link rel=\"alternate\" hreflang=\"".$lang."\" href=\"?lang=".$lang."\">\n";
}
?>
<link rel="alternate" hreflang="x-default" href="?lang=en" />
<style>
</style>
</head>
<body>
<div class="center">
<div style="margin: 32px;">
<a href="/<?php echo getLanguageRequestParam() ?>">< Home</a>
<h1><?php echo $strings["about_title_privacy_statement"]; ?></h1>
<?php
echo $strings["privacy_html"];
echo sprintf($strings["privacy_html_tileserver2"], "JawgMaps", "https://www.jawg.io/en/confidentiality/");
echo $strings["privacy_html_statistics"];
echo $strings["privacy_html_third_party_quest_sources"];
echo $strings["privacy_html_image_upload2"];
?>
</div>
</div>
<?php include "_footer.php"; ?>
</body>
</html>