This repository has been archived on 2023-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
web/inc/debut.php

44 lines
1.1 KiB
PHP
Raw Normal View History

2021-04-05 18:32:22 +02:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
2021-09-21 19:19:05 +02:00
<title><?php
if (isset($title) AND !is_null($title))
2021-10-06 18:39:25 +02:00
echo $title . " · " . $config['siteTitle'];
2021-09-21 19:19:05 +02:00
else
2021-10-06 18:39:25 +02:00
echo $config['siteTitle'];
2021-09-21 19:19:05 +02:00
?></title>
2021-04-05 18:32:22 +02:00
<meta name="distribution" content="global">
<meta name="robots" content="index, follow">
<meta name="viewport" content="width=device-width, initial-scale=1">
2021-10-06 18:39:25 +02:00
<?php if ($config['css']) { ?>
<link type="text/css" rel="stylesheet" href="/css/<?= CSS_FILENAME ?>">
<?php } ?>
2021-04-05 18:32:22 +02:00
<?php
if (file_exists(SITE . "/head.inc.html"))
echo file_get_contents(SITE . "/head.inc.html");
2021-04-05 18:32:22 +02:00
?>
</head>
2021-09-21 19:19:05 +02:00
<body>
2021-10-06 18:39:25 +02:00
<?php
if ($config['header']) {
?>
2021-04-05 18:32:22 +02:00
<header>
<a id="lienHeader" href="/">
2021-09-21 19:19:05 +02:00
<div class="logo">
<?php
if (file_exists(SITE . "/img/logo.webp"))
2021-10-06 18:39:25 +02:00
echo '<img src="img/logo.webp" ' . getimagesize(SITE . "/img/logo.webp")[3] . ' alt="' . $config['siteTitle'] . '" />';
else
2021-10-06 18:39:25 +02:00
echo $config['siteTitle'];
?>
2021-09-21 19:19:05 +02:00
</div>
2021-04-05 18:32:22 +02:00
</a>
</header>
2021-10-06 18:39:25 +02:00
<?php
}
?>
2021-04-05 18:32:22 +02:00
<main>