hecq-et-lesort/site/snippets/head.php
isUnknown 768eb15493 head : titre dynamique selon la page courante
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-27 17:06:47 +02:00

11 lines
No EOL
430 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?= $page->isHomePage() ? $site->title() : $page->title() . " | " . $site->title() ?></title>
<meta name="robots" content="noindex,nofollow">
<link rel="stylesheet" href="<?= url('assets/css/style.css') ?>">
<script src="<?= url('assets/js/script.js') ?>"></script>
</head>