2025-11-24 14:01:48 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="fr">
|
|
|
|
|
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>
|
|
|
|
|
<?= e($page->isHomePage() != true, $page->title() . ' - ') . $site->title() ?>
|
|
|
|
|
</title>
|
|
|
|
|
|
2025-11-24 17:30:36 +01:00
|
|
|
<link rel="stylesheet" href="<?= url('assets/pagedjs-interface.css') ?>">
|
|
|
|
|
<link rel="stylesheet" href="<?= url('assets/stylesheet.css') ?>">
|
2025-11-24 14:01:48 +01:00
|
|
|
|
|
|
|
|
<!-- À SUPPRIMER EN PRODUCTION -->
|
|
|
|
|
<meta name="robots" content="noindex, nofollow, noarchive">
|
|
|
|
|
|
|
|
|
|
<!-- APP -->
|
|
|
|
|
<?php if (Dir::exists('assets/dist')): ?>
|
|
|
|
|
<script type="module"
|
|
|
|
|
src="<?= url('assets/dist/index.js') ?>" defer></script>
|
|
|
|
|
<link rel="stylesheet"
|
|
|
|
|
href="<?= url('assets/dist/index.css') ?>">
|
|
|
|
|
<?php else: ?>
|
|
|
|
|
<script type="module" src="http://localhost:5173/@vite/client" defer></script>
|
|
|
|
|
<script type="module" src="http://localhost:5173/src/main.js" defer></script>
|
|
|
|
|
<?php endif ?>
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
|
|
<body data-template="<?= $page->template() ?>">
|
|
|
|
|
<div id="app">
|