Compare commits

..

No commits in common. "be3ad68b25412edfc0fa3e17d519453edbd6b272" and "7876a3c633bf830f5540b7188638de845623c408" have entirely different histories.

7 changed files with 0 additions and 35 deletions

View file

@ -19,7 +19,6 @@
"@hotwired/stimulus": "^3.2.2",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@hotwired/turbo": "^8.0.13",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"concurrently": "^9.2.1",
"tailwindcss": "^4.1.12"

View file

@ -1,5 +0,0 @@
<?php
/** @var \Kirby\Cms\Block $block */ ?>
<div class="prose">
<<?= $level = $block->level()->or('h2') ?>><?= $block->text() ?></<?= $level ?>>
</div>

View file

@ -1,5 +0,0 @@
<?php
/** @var \Kirby\Cms\Block $block */ ?>
<div class="prose">
<?= $block->text(); ?>
</div>

View file

@ -1,5 +0,0 @@
<?php
/** @var \Kirby\Cms\Block $block */ ?>
<div class="prose">
<?= $block->text()->kt(); ?>
</div>

View file

@ -1,11 +0,0 @@
<?php /** @var \Kirby\Cms\Block $block */ ?>
<div class="prose">
<blockquote>
<?= $block->text() ?>
<?php if ($block->citation()->isNotEmpty()): ?>
<footer>
<?= $block->citation() ?>
</footer>
<?php endif ?>
</blockquote>
</div>

View file

@ -1,5 +0,0 @@
<?php
/** @var \Kirby\Cms\Block $block */ ?>
<div class="prose">
<?= $block->text(); ?>
</div>

View file

@ -1,5 +1,2 @@
@import "tailwindcss";
@plugin "@tailwindcss/typography";
@plugin "@tailwindcss/forms";
@source inline('{sm:,md:,lg:,xl:,}col-span-{1,2,3,4,5,6,7,8,9,10,11,12}');