2026-04-28 17:53:54 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2026-06-11 08:15:16 +02:00
|
|
|
<title><?= $page->isHomePage() ? $site->title() : $page->title() . ' | ' . $site->title() ?></title>
|
2026-05-27 19:36:20 +02:00
|
|
|
<meta name="robots" content="none">
|
2026-04-28 17:53:54 +02:00
|
|
|
|
2026-05-28 10:30:18 +02:00
|
|
|
<link rel="stylesheet" href="<?= url('assets/css/style.css') ?>">
|
|
|
|
|
|
2026-06-24 15:24:10 +02:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/gsap@3/dist/gsap.min.js"></script>
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/gsap@3/dist/MorphSVGPlugin.min.js"></script>
|
2026-05-28 08:11:47 +02:00
|
|
|
<script src="<?= url('assets/js/script.js') ?>" type="module"></script>
|
2026-06-19 19:00:30 +02:00
|
|
|
</head>
|
|
|
|
|
<body data-template="<?= $page->intendedTemplate() ?>">
|