From 78b989f29004fab78946e8606b6b9a752efcd4dc Mon Sep 17 00:00:00 2001 From: buckaroo-labs Date: Wed, 20 Dec 2023 21:39:10 -0800 Subject: add 'minimal' theme --- data/templates/minimal/top.inc.php | 115 +++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 data/templates/minimal/top.inc.php (limited to 'data/templates/minimal/top.inc.php') diff --git a/data/templates/minimal/top.inc.php b/data/templates/minimal/top.inc.php new file mode 100644 index 0000000..c95ee3a --- /dev/null +++ b/data/templates/minimal/top.inc.php @@ -0,0 +1,115 @@ + + + + + + <?php echo filter($GLOBALS['sitename'] .(isset($pagetitle) ? ' ยป ' . $pagetitle : '')); ?> + + + + + + + + ' . "\n"; + } + } + ?> + + + + + + + + + + + + + + + + + + + + +
+ + +
+
+
+ ' . $subtitlehtml . "
"; + } else if (isset($subtitle)) { + echo '
' . htmlspecialchars($subtitle) . "
"; + } + ?> +
+
+
+ +
+
+
+
+
+
+ '. T_('Admins, your installation is in "Debug Mode" ($debugMode = true). To go in "Normal Mode" and hide debugging messages, change $debugMode to false into config.php.') ."

\n"; + } + if (isset($error) && $error!='') { + echo '

'. $error ."

\n"; + } + if (isset($msg) && $msg!='') { + echo '

'. $msg ."

\n"; + } + if (isset($tipMsg) && $tipMsg!='') { + echo '

'. $tipMsg ."

\n"; + } + ?> +
+
+
-- cgit v1.2.3-54-g00ecf