summaryrefslogtreecommitdiffstatshomepage
path: root/templates/top.inc.php
diff options
context:
space:
mode:
authorGravatar cweiske2009-10-03 14:00:33 +0000
committerGravatar cweiske2009-10-03 14:00:33 +0000
commit29422fa55379aa61a61019b832c83dab6d450264 (patch)
treee5884ce6fed2cf1d02165a1b5667b99cd80262e5 /templates/top.inc.php
parentb8b1d06b2d899658fae64d0de506439ca0ea067c (diff)
downloadscuttle-29422fa55379aa61a61019b832c83dab6d450264.tar.gz
scuttle-29422fa55379aa61a61019b832c83dab6d450264.zip
move files to new locations
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@386 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/top.inc.php')
-rw-r--r--templates/top.inc.php61
1 files changed, 0 insertions, 61 deletions
diff --git a/templates/top.inc.php b/templates/top.inc.php
deleted file mode 100644
index 13b0347..0000000
--- a/templates/top.inc.php
+++ /dev/null
@@ -1,61 +0,0 @@
-<?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>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title><?php echo filter($GLOBALS['sitename'] .(isset($pagetitle) ? ' ยป ' . $pagetitle : '')); ?></title>
- <link rel="icon" type="image/png" href="<?php echo ROOT ?>icon.png" />
- <link rel="stylesheet" type="text/css" href="<?php echo ROOT ?>scuttle.css" />
- <link rel="search" type="application/opensearchdescription+xml" href="<?php echo ROOT ?>api/opensearch.php" title="<?php echo $GLOBALS['sitename'] ?>"/>
-<?php
-if(isset($rsschannels)) {
- $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] .'" />';
- }
-}
-?>
- <link rel="stylesheet" type="text/css"
- href="http://ajax.googleapis.com/ajax/libs/dojo/1.2/dijit/themes/nihilo/nihilo.css" />
-
-<?php if (isset($loadjs)) :?>
- <script type="text/javascript" src="<?php echo ROOT ?>jsScuttle.php"></script>
-<?php endif ?>
-
- </head>
-
- <body class="nihilo">
-<!-- the class is used by Dojo widgets -->
-
-<?php
-$headerstyle = '';
-if(isset($_GET['popup'])) {
- $headerstyle = ' class="popup"';
-}
-?>
-
-<div id="header" <?php echo $headerstyle; ?>>
-<h1><a href="<?php echo 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(DEBUG_MODE) {
- echo '<p class="error">'. 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.inc.php.') ."</p>\n";
-}
-if (isset($error) && $error!='') {
- echo '<p class="error">'. $error ."</p>\n";
-}
-if (isset($msg) && $msg!='') {
- echo '<p class="success">'. $msg ."</p>\n";
-}
-if (isset($tipMsg) && $tipMsg!='') {
- echo '<p class="tipMsg">'. $tipMsg ."</p>\n";
-}
-?>