popnoire/site/snippets/site-title.php

10 lines
202 B
PHP
Raw Normal View History

2026-02-12 15:22:46 +01:00
<header>
<?php if ($page->isHomepage()): ?>
<h1><?= $site->title()->html() ?></h1>
<?php else: ?>
<h1><?= $page->title()->html() ?></h1>
<?php endif ?>
<?php snippet('navigation') ?>
</header>