aboutsummaryrefslogtreecommitdiff
path: root/data/templates/top.inc.php
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-05-25 19:43:36 +0200
committerChristian Weiske <cweiske@cweiske.de>2011-05-25 19:43:36 +0200
commit5ba53394fcda4ae9cfa9af52b37fb67517deeb5a (patch)
tree4416be7903a2b339382e9f933284f50797edc239 /data/templates/top.inc.php
parent63b0a4b8cb38a8a7c41410900b9dfcc84e6a33a9 (diff)
downloadsemanticscuttle-5ba53394fcda4ae9cfa9af52b37fb67517deeb5a.tar.gz
semanticscuttle-5ba53394fcda4ae9cfa9af52b37fb67517deeb5a.tar.bz2
implement request #1989987: theme support. merge themes branch with --squash
Diffstat (limited to 'data/templates/top.inc.php')
-rw-r--r--data/templates/top.inc.php66
1 files changed, 0 insertions, 66 deletions
diff --git a/data/templates/top.inc.php b/data/templates/top.inc.php
deleted file mode 100644
index bdd4b1a..0000000
--- a/data/templates/top.inc.php
+++ /dev/null
@@ -1,66 +0,0 @@
-<?xml version="1.0" encoding="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="application/xhtml+xml; 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 htmlspecialchars($GLOBALS['sitename']) ?>"/>
-<?php
-if (isset($rsschannels)) {
- $size = count($rsschannels);
- for ($i = 0; $i < $size; $i++) {
- echo ' <link rel="alternate" type="application/rss+xml" title="'
- . htmlspecialchars($rsschannels[$i][0]) . '"'
- . ' href="'. $rsschannels[$i][1] .'" />';
- }
-}
-?>
-
-<?php if (isset($loadjs)) :?>
-<?php if (DEBUG_MODE) : ?>
- <script type="text/javascript" src="<?php echo ROOT_JS ?>jquery-1.4.2.js"></script>
- <script type="text/javascript" src="<?php echo ROOT_JS ?>jquery.jstree.js"></script>
-<?php else: ?>
- <script type="text/javascript" src="<?php echo ROOT_JS ?>jquery-1.4.2.min.js"></script>
- <script type="text/javascript" src="<?php echo ROOT_JS ?>jquery.jstree.min.js"></script>
-<?php endif ?>
- <script type="text/javascript" src="<?php echo ROOT ?>jsScuttle.php"></script>
-<?php endif ?>
-
- </head>
- <body>
-
-<?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.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";
-}
-?>