diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2007-12-12 16:29:16 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2007-12-12 16:29:16 +0000 |
commit | d582054c77b22daeb08d2bff17794b9a69a20dd4 (patch) | |
tree | d6e7cef8639da6f573cd0b21a5316abf5af24fac /templates/top.inc.php | |
download | semanticscuttle-d582054c77b22daeb08d2bff17794b9a69a20dd4.tar.gz semanticscuttle-d582054c77b22daeb08d2bff17794b9a69a20dd4.tar.bz2 |
import of scuttle 0.7.2
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@1 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/top.inc.php')
-rw-r--r-- | templates/top.inc.php | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/templates/top.inc.php b/templates/top.inc.php new file mode 100644 index 0000000..64213fd --- /dev/null +++ b/templates/top.inc.php @@ -0,0 +1,47 @@ +<?php header('Content-Type: text/html; charset=utf-8'); ?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> +<head> + <title><?php echo filter($GLOBALS['sitename'] . (isset($pagetitle) ? ': ' . $pagetitle : '')); ?></title> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <link rel="icon" type="image/png" href="<?php echo $GLOBALS['root']; ?>icon.png" /> + <link rel="stylesheet" type="text/css" href="<?php echo $GLOBALS['root']; ?>scuttle.css" /> + <?php + $size = count($rsschannels); + for ($i = 0; $i < $size; $i++) { + echo '<link rel="alternate" type="application/rss+xml" title="'. $rsschannels[$i][0] .'" href="'. $rsschannels[$i][1] .'" />'; + } + if ($loadjs) { + echo '<script type="text/javascript" src="'. $GLOBALS['root'] .'jsScuttle.php"></script>'; + } + ?> +</head> +<body> + +<?php +$headerstyle = ''; +if(isset($_GET['popup'])) { + $headerstyle = ' class="popup"'; +} +?> + +<div id="header"<?php echo $headerstyle; ?>> + <h1><a href="<?php echo $GLOBALS['root']; ?>"><?php echo $GLOBALS['sitename']; ?></a></h1> + <?php + if(!isset($_GET['popup'])) { + $this->includeTemplate('toolbar.inc'); + } + ?> +</div> + +<?php +if (isset($subtitle)) { + echo '<h2>'. $subtitle ."</h2>\n"; +} +if (isset($error)) { + echo '<p class="error">'. $error ."</p>\n"; +} +if (isset($msg)) { + echo '<p class="success">'. $msg ."</p>\n"; +} +?> |