forked from rebillar/site-accueil-insa
51 lines
2.2 KiB
PHP
51 lines
2.2 KiB
PHP
<?php
|
|
if (!isset($relativePath))
|
|
$relativePath = '';
|
|
|
|
if (!isset($customBackgroundId))
|
|
$customBackgroundId = '';
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
|
<meta name="viewport" content="width=device-width,maximum-scale=2">
|
|
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
|
|
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jquery-confirm/3.3.2/jquery-confirm.min.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
|
|
<link rel="stylesheet" type="text/css" media="screen" href="<?= $relativePath ?>assets/css/style.css">
|
|
<link rel="stylesheet" type="text/css" media="screen" href="<?= $relativePath ?>assets/css/enigma.css">
|
|
<link href="https://fonts.googleapis.com/css?family=Vollkorn|Cutive+Mono" rel="stylesheet">
|
|
<link rel="shortcut icon" href="<?= $relativePath ?>favicon.ico">
|
|
<title>L'énigme d'Arthurus Rogue</title>
|
|
<!-- Matomo -->
|
|
<script type="text/javascript">
|
|
var _paq = _paq || [];
|
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
|
_paq.push(['disableCookies']);
|
|
_paq.push(['trackPageView']);
|
|
_paq.push(['enableLinkTracking']);
|
|
(function () {
|
|
var u = "//etud.insa-toulouse.fr/~accueil_insa/analytics/";
|
|
_paq.push(['setTrackerUrl', u + 'piwik.php']);
|
|
_paq.push(['setSiteId', '1']);
|
|
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
|
|
g.type = 'text/javascript';
|
|
g.async = true;
|
|
g.defer = true;
|
|
g.src = u + 'piwik.js';
|
|
s.parentNode.insertBefore(g, s);
|
|
})();
|
|
</script>
|
|
<!-- End Matomo Code -->
|
|
</head>
|
|
<body>
|
|
<div class="background" id="bg_pekhint"></div>
|
|
<div class="inner">
|
|
Bien joué le coup du code source, mais je suis sûr qu'en usant vos capacités mentales vous pourrez trouver !
|
|
Signé : quelqu'un
|
|
</body>
|
|
</html>
|