1 <?php header('Content-Type: text/html; charset=utf-8'); ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
5 <title><?php echo filter($GLOBALS['sitename'] . (isset($pagetitle) ? ': ' . $pagetitle : '')); ?></title>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7 <link rel="icon" type="image/png" href="<?php echo $GLOBALS['root']; ?>icon.png" />
8 <link rel="stylesheet" type="text/css" href="<?php echo $GLOBALS['root']; ?>scuttle.css" />
10 $size = count($rsschannels);
11 for ($i = 0; $i < $size; $i++) {
12 echo '<link rel="alternate" type="application/rss+xml" title="'. $rsschannels[$i][0] .'" href="'. $rsschannels[$i][1] .'" />';
15 echo '<script type="text/javascript" src="'. $GLOBALS['root'] .'jsScuttle.php"></script>';
23 if(isset($_GET['popup'])) {
24 $headerstyle = ' class="popup"';
28 <div id="header"<?php echo $headerstyle; ?>>
29 <h1><a href="<?php echo $GLOBALS['root']; ?>"><?php echo $GLOBALS['sitename']; ?></a></h1>
31 if(!isset($_GET['popup'])) {
32 $this->includeTemplate('toolbar.inc');
38 if (isset($subtitle)) {
39 echo '<h2>'. $subtitle ."</h2>\n";
42 echo '<p class="error">'. $error ."</p>\n";
45 echo '<p class="success">'. $msg ."</p>\n";