mirror of
https://github.com/monero-project/monero-site.git
synced 2024-11-16 15:58:16 +00:00
8fc80c3d39
- Reverted changed lines in footer - Removed GA script in langauge.php - Replaced mentions of GA with Matomo in Legal page
75 lines
2.5 KiB
PHP
75 lines
2.5 KiB
PHP
<?php
|
|
date_default_timezone_set('Africa/Johannesburg');
|
|
if (isset($_COOKIE["MONERO_LANG"]))
|
|
{
|
|
if ($_COOKIE["MONERO_LANG"] == "en")
|
|
{
|
|
header('Location: /home');
|
|
die();
|
|
}
|
|
else
|
|
{
|
|
header('Location: /'.$_COOKIE["MONERO_LANG"]);
|
|
die();
|
|
}
|
|
}
|
|
?>
|
|
<!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">
|
|
|
|
<title>Monero - secure, private, and untraceable</title>
|
|
<meta name="description" content="Monero is a digital currency that is secure, private, and untraceable.">
|
|
<meta name="keywords" content="monero, xmr, bitmonero, cryptocurrency">
|
|
|
|
<meta property="og:title" content="Monero - secure, private, untraceable"/>
|
|
<meta property="og:description" content="Monero is a digital currency that is secure, private, and untraceable.">
|
|
<meta property="og:image" content="http://static.getmonero.org/images/opengraph/logo.png">
|
|
<meta property="og:site_name" content="getmonero.org, The Monero Project">
|
|
<meta property="og:url" content="https://getmonero.org/language.php">
|
|
<meta property="og:type" content="website">
|
|
|
|
<link href="//static.getmonero.org/style.css?1" rel="stylesheet">
|
|
</head>
|
|
|
|
<body class="body-language">
|
|
<!-- Static navbar -->
|
|
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
|
|
<div class="container" style="padding-bottom: 0px;">
|
|
<div class="navbar-header">
|
|
<a class="navbar-brand" href="/"><img class="logo" src="//static.getmonero.org/images/logo.svg"></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container main-content">
|
|
<div class="row">
|
|
<div class="col-md-4 col-md-offset-2">
|
|
<ul class="nav nav-pills nav-stacked flag-select">
|
|
<li><a href="/home"><h3><img class="flag" src="//static.getmonero.org/images/flags/english_combined.png"> English</h3></a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="col-md-4">
|
|
<ul class="nav nav-pills nav-stacked flag-select">
|
|
<li><h3 style="line-height: 50px; padding: 10px 20px;"><img class="flag" src="//static.getmonero.org/images/flags/allflags.png"> More to come...</h3></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<div class="container">
|
|
<p>
|
|
Copyright © <strong>The Monero Project, <?php echo date("Y"); ?></strong>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- JS -->
|
|
<script src="//static.getmonero.org/scripts.js"></script>
|
|
</body>
|
|
</html>
|