From 15a30340e8867dfac3f88460fbd93b581e56f10f Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Tue, 11 Jun 2024 00:58:31 -0700 Subject: Initial steps towards a pico.css-based theme --- data/templates/pico/top.inc.php | 87 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 data/templates/pico/top.inc.php (limited to 'data/templates/pico/top.inc.php') diff --git a/data/templates/pico/top.inc.php b/data/templates/pico/top.inc.php new file mode 100644 index 0000000..1ae9607 --- /dev/null +++ b/data/templates/pico/top.inc.php @@ -0,0 +1,87 @@ + + + + + + + + + +' . "\n"; + } +} +?> + + + + + + + + + + + + + <?php echo filter($GLOBALS['sitename'] .(isset($pagetitle) ? ' ยป ' . $pagetitle : '')); ?> + + + +
+ +
+ + +' . $subtitlehtml . "\n"; +} else if (isset($subtitle)) { + echo '

' . htmlspecialchars($subtitle) . "

\n"; +} +if(DEBUG_MODE) { + echo '

'. 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