feat: added tailwindcss

This commit is contained in:
Stephan Plöhn 2025-08-26 10:20:04 +02:00
parent e106ee4c4c
commit 315f7e9896
5 changed files with 94 additions and 0 deletions

View file

@ -0,0 +1,44 @@
<?php
/**
* @var Site $site
* @var Page $page
* @var Slot $slot
* @var Slots $slots
*/
use Kirby\Cms\Page;
use Kirby\Cms\Site;
use Kirby\Template\Slot;
use Kirby\Template\Slots;
?>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>
<?= $page->title() ?> | <?= $site->title() ?>
</title>
<?= css('css/app.css') ?>
</head>
<body>
<header>
<h1>
<a href="<?= $site->url() ?>">
<?= $site->title() ?>
</a>
</h1>
</header>
<main>
<?= $slot ?>
</main>
<footer>
by <?= $site->title() ?>
</footer>
</body>
</html>