20 lines
No EOL
942 B
PHP
20 lines
No EOL
942 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<title><?= $site->title() ?><?= e($page->url() !== $site->url(), '-' . $page->title()) ?></title>
|
|
<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)?>" type="module" defer></script>
|
|
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
|
<meta name="robots" content="noindex, nofollow, noarchive">
|
|
</head>
|
|
<body class="grid" data-template="<?= $page->template() ?>">
|
|
<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>
|