2020-05-31 00:21:29 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>MapGuesser</title>
|
2020-06-12 19:17:41 +02:00
|
|
|
<link href="<?= $_ENV['STATIC_ROOT'] ?>/css/mapguesser.css?rev=<?= REVISION ?>" rel="stylesheet">
|
2020-06-01 20:39:23 +02:00
|
|
|
<?php if (isset($cssFiles)) : ?>
|
|
|
|
<?php foreach ($cssFiles as $cssFile) : ?>
|
2020-06-12 19:17:41 +02:00
|
|
|
<?php
|
|
|
|
if (!preg_match('/^http(s)?/', $cssFile)) {
|
|
|
|
$cssFile = $_ENV['STATIC_ROOT'] . '/' . $cssFile . '?rev=' . REVISION;
|
|
|
|
}
|
|
|
|
?>
|
2020-06-01 20:39:23 +02:00
|
|
|
<link href="<?= $cssFile ?>" rel="stylesheet">
|
|
|
|
<?php endforeach; ?>
|
|
|
|
<?php endif; ?>
|
2020-06-06 01:11:45 +02:00
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap" rel="stylesheet">
|
2020-05-31 20:45:57 +02:00
|
|
|
<link rel="icon" type="image/png" sizes="192x192" href="/static/img/favicon/192x192.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="96x96" href="/static/img/favicon/96x96.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/static/img/favicon/32x32.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/static/img/favicon/16x16.png">
|
2020-05-31 00:21:29 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="loading">
|
2020-05-31 20:45:57 +02:00
|
|
|
<img src="/static/img/loading.svg">
|
2020-05-31 00:21:29 +02:00
|
|
|
</div>
|