actuel-inactuel/site/snippets/header.php

20 lines
929 B
PHP
Raw Normal View History

2024-01-25 18:34:32 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
2024-03-10 19:24:24 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
2024-01-25 18:34:32 +01:00
<title><?= $site->title() ?><?= e($page->url() !== $site->url(), '-' . $page->title()) ?></title>
2024-04-06 10:08:45 +02:00
<link rel="stylesheet" href="<?= url('assets/css/style.css') . '?version-cache-prevent' . rand(0, 1000) ?>" />
<script src="<?= url('assets') ?>/js/script.js?version-cache-prevent<?= rand(0, 1000)?>" defer></script>
2024-01-25 18:34:32 +01:00
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
2024-04-07 07:29:27 +02:00
<meta name="robots" content="noindex, nofollow, noarchive">
2024-01-25 18:34:32 +01:00
</head>
<body class="grid" data-template="<?= $page->template() ?>" >
2024-04-07 11:09:43 +02:00
<header id="main-header">
<div id="logo" >
<a href="/" class="no-line">
<h1 id="actuel">actuel</h1>
<h1 id="inactuel">inactuel</h1>
</a>
</div>
</header>