index-main/site/snippets/header.php

17 lines
520 B
PHP
Raw Normal View History

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-10-14 17:37:29 +02:00
<link rel="stylesheet" href="<?= url('assets/style.css') ?>?version-cache-prevent<?= rand(0, 1000) ?>">
<meta name="robots" content="noindex,nofollow">
2025-10-07 16:21:26 +02:00
<title>
<?php if ($page->isHomePage() == false): ?>
<?= $page->title() ?>&nbsp;|&nbsp;
<?php endif ?>
<?= $site->title() ?>
</title>
</head>
<body data-template="<?= $page->template() ?>">
2025-10-14 17:29:13 +02:00
<h1>Index</h1>