2025-10-07 16:21:26 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2025-11-04 08:33:39 +01:00
|
|
|
<link rel="stylesheet" href="<?= url('assets/css/style.css') ?>?version-cache-prevent<?= rand(0, 1000) ?>">
|
2025-10-14 17:37:29 +02:00
|
|
|
<meta name="robots" content="noindex,nofollow">
|
2025-10-07 16:21:26 +02:00
|
|
|
<title>
|
|
|
|
|
<?php if ($page->isHomePage() == false): ?>
|
|
|
|
|
<?= $page->title() ?> |
|
|
|
|
|
<?php endif ?>
|
|
|
|
|
<?= $site->title() ?>
|
|
|
|
|
</title>
|
2025-11-04 16:32:53 +01:00
|
|
|
|
|
|
|
|
<script src="<?= url('assets/js/script.js') ?>"></script>
|
2025-10-07 16:21:26 +02:00
|
|
|
</head>
|
|
|
|
|
<body data-template="<?= $page->template() ?>">
|
2025-11-04 08:33:39 +01:00
|
|
|
<?php snippet('nav') ?>
|