site-accueil-insa/template.php

68 lines
2.4 KiB
PHP
Raw Normal View History

2018-03-25 13:22:28 +02:00
<!DOCTYPE html>
<html lang="fr">
<head>
2018-06-05 20:03:33 +02:00
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-119918217-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-119918217-1');
</script>
2018-03-25 13:22:28 +02:00
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width,maximum-scale=2">
2018-05-24 13:17:51 +02:00
<script defer src="https://use.fontawesome.com/releases/v5.0.13/js/all.js"></script>
2018-03-25 13:22:28 +02:00
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/style.css">
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/sidenav.css">
2018-06-05 20:03:33 +02:00
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/score.css">
2018-03-25 13:22:28 +02:00
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/hamburger.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/hammer.js/2.0.8/hammer.js"></script>
2018-05-24 13:17:51 +02:00
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway|Russo+One" rel="stylesheet">
<link rel="shortcut icon" href="favicon.ico">
2018-06-05 20:03:33 +02:00
<title><?= $pageTitle ?> | INSAT Accueil 2018</title>
<?= $pageMeta // Additional metadata ?>
2018-03-25 13:22:28 +02:00
</head>
<body id="main">
2018-06-05 20:03:33 +02:00
<div class="background" id="<?= $customBackgroundId?>"></div>
<div id="back-button" onclick="closeNav()"></div>
<?php
include("includes/top_bar.html");
include("includes/sidenav.html");
?>
2018-06-05 20:03:33 +02:00
<div id="header-wrap" class="outer">
<header class="inner">
<h1 id="title">Semaine d'Accueil 2018</h1>
2018-06-05 20:03:33 +02:00
<h3 id="timer">Chargement du compte à rebours...</h3>
</header>
</div>
2018-03-25 13:22:28 +02:00
2018-05-24 13:17:51 +02:00
<?php
include("includes/score_counter.php");
?>
2018-06-05 20:03:33 +02:00
<div id="main-fading-top-edge"></div>
<div id="main-content-wrap" class="outer">
<section id="main-content" class="inner">
<?= $pageContent // Display content defined in calling file ?>
</section>
</div>
2018-06-05 20:03:33 +02:00
<div id="main-fading-bottom-edge"></div>
<div id="footer-wrap" class="outer">
<footer class="inner">
2018-06-05 20:03:33 +02:00
<?php
include("includes/copyright.html");
?>
</footer>
</div>
2018-03-25 13:22:28 +02:00
</body>
2018-06-05 20:03:33 +02:00
<script src="assets/scripts/TimerScript.js"></script>
<script src="assets/scripts/sidenavScript.js"></script>
2018-03-25 13:22:28 +02:00
</html>