b29a21780f
Introduced a new FEN block feature, including a PHP snippet to render FEN diagrams, a new CSS file for chessboard styling, font integration, and blueprint updates. Adjusted asset paths and file references for consistency.
48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
|
|
<title><?= $site->title()->esc() ?> | <?= $page->title()->esc() ?></title>
|
|
|
|
<?= css([
|
|
'assets/css/styles.css',
|
|
'assets/css/chess.css'
|
|
]) ?>
|
|
|
|
<link rel="shortcut icon" type="image/x-icon"
|
|
href="<?= url('assets/favicon.ico') ?>">
|
|
</head>
|
|
|
|
<body class="font-sans antialiased bg-sf_grau-400 text-gray-900">
|
|
<header>
|
|
<?php snippet('navbar') ?>
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<?php if ($page->isHomePage()): ?>
|
|
<?php snippet('hero') ?>
|
|
<?php endif ?>
|
|
|
|
<?php if ($page->heroText()->isNotEmpty()): ?>
|
|
<?php snippet('titel') ?>
|
|
<?php endif ?>
|
|
|
|
<section class="py-24 bg-sf_grau-50">
|
|
<div class="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
|
|
<?= $slot ?>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer class="bg-sf_grau-400 w-full" id="footer">
|
|
<?php snippet('footer') ?>
|
|
</footer>
|
|
<?= js([
|
|
'assets/js/navbar.js'
|
|
]) ?>
|
|
</body>
|
|
</html>
|