<!doctype html>
|
|
|
|
<?php
|
|
|
|
$lang=$_GET['lang'];
|
|
if ( in_array ($lang, array('en-US'))){
|
|
$loc = "$lang".".utf8";
|
|
$loc1 = $lang;
|
|
}
|
|
else {
|
|
$loc = "de-DE";
|
|
$loc1 = "de-DE";
|
|
}
|
|
|
|
|
|
include "Spyc.php";
|
|
$localeYaml = Spyc::YAMLLoad('locale.yaml');
|
|
|
|
$domain = "messages";
|
|
|
|
setlocale(LC_MESSAGES, $loc);
|
|
setlocale(LC_ALL, $loc);
|
|
|
|
$results = putenv("LC_ALL=$loc");
|
|
$results = putenv("LC_MESSAGES=$loc");
|
|
?>
|
|
|
|
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title><?php echo $localeYaml['title'][$loc1]?></title>
|
|
<link rel="stylesheet" href="index.css">
|
|
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
<center>
|
|
|
|
<header style="height: 10 vh;">
|
|
|
|
<img style="float: right; height: 15vh;" src="static/KaosCubeLogo.png" alt="logo">
|
|
|
|
<div class="linkContainer">
|
|
<a href="/" style="text-decoration:none; color:black;"><p class="pLink"><b><?php echo $localeYaml['indexLink'][$loc1]?></b></p></a>
|
|
<a href="diy.php" style="text-decoration:none; color:black;"><p class="pLink"><?php echo $localeYaml['diyLink'][$loc1]?></p></a>
|
|
<a href="buy.php" style="text-decoration:none; color:black;"><p class="pLink"><?php echo $localeYaml['buyLink'][$loc1]?></p></a>
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
</br></br></br></br></br>
|
|
|
|
|
|
<h1 style="color:deeppink;">Soon to come on <a href="https://code.basabuuka.org"><p class="pLink" style="color: deeppink;"> a gitea instance </p> </a>
|
|
|
|
</br></br></br></br></br>
|
|
|
|
<footer>
|
|
<a href="mailto:info@cannabinieri.de"><p class="pLink" style="color: deeppink;"><?php echo $localeYaml['contact'][$loc1]?></p></a>
|
|
<p>© Cannabinieri 2022-CC BY-NC 4.0</p>
|
|
<a href="https://www.cannabinieri.de"><p class="pLink" style="color: deeppink;"> <?php echo $localeYaml['contactWebsite'][$loc1]?> </p> </a> <br>
|
|
</footer>
|
|
</center>
|
|
</body>
|
|
</html>
|