From aa4577bf95308140b74bb3d0c2415b4edde3117d Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sat, 18 Jan 2025 14:17:19 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20(Bootstrap):=20add=20an=20utils=20f?= =?UTF-8?q?or=20cards?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bl-kernel/admin/themes/koblog/init.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/bl-kernel/admin/themes/koblog/init.php b/bl-kernel/admin/themes/koblog/init.php index 2a93dcea..8501cc14 100644 --- a/bl-kernel/admin/themes/koblog/init.php +++ b/bl-kernel/admin/themes/koblog/init.php @@ -35,6 +35,21 @@ class Bootstrap EOF; } + public static function cardBegin($title) { + return << +
$title
+
+EOF; + } + + public static function cardEnd() { + return << +
+EOF; + } + public static function link($args) { $options = 'href="' . $args['href'] . '"';