web/inc/debut.php

42 lines
1.4 KiB
PHP
Raw Normal View History

<?php
2018-08-27 16:00:21 +02:00
function head($adresse) {
require "page.php";
2018-08-27 16:00:21 +02:00
?>
2018-10-11 09:56:04 +02:00
<!DOCTYPE HTML>
<html lang="fr" id="haut">
<head>
<meta charset="UTF-8">
2019-08-14 22:38:32 +02:00
<title><?php echo $page['titre']; ?> · Antopie</title>
<link rel="icon" type="image/ico" href="img/favicon.ico">
2018-10-11 09:56:04 +02:00
<meta name="author" lang="fr" content="Miraty">
2019-08-14 22:38:32 +02:00
<meta name="publisher" content="Antopie">
2018-10-11 09:56:04 +02:00
<meta name="distribution" content="global">
<meta name="robots" content="index, follow">
2019-08-14 22:38:32 +02:00
<meta name="keywords" lang="fr" content="antopie.org, Miraty, Antopie">
<meta name="description" content="<?php echo $page['description']; ?>">
<script src="bibli/konami.js"></script>
<script>
var gomez = new Konami(function() { var div = document.getElementById('gomeza'), display = getComputedStyle(div, null).display; if(display == "block") { document.getElementById("gomeza").style.display = "none"; } else { document.getElementById("gomeza").style.display = "block"; }});
</script>
<style>
<?php require("bibli/lessphp/lessc.inc.php");
$less = new lessc;
2019-08-14 22:38:32 +02:00
echo $less->compileFile("style.less"); ?>
</style>
2018-10-11 09:56:04 +02:00
</head>
2018-08-27 16:00:21 +02:00
<body lang="fr">
2019-08-14 22:38:32 +02:00
<a href=".">
<header>
<div class="logo"><img src="img/antopie.png" width="100%" alt="Logo Ant" /></div>
</header>
</a>
2019-08-14 22:38:32 +02:00
<main>
<?php } ?>