/[drupal]/contributions/themes/slash/page.tpl.php
ViewVC logotype

Contents of /contributions/themes/slash/page.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.11 - (show annotations) (download) (as text)
Fri Sep 12 19:06:09 2008 UTC (14 months, 2 weeks ago) by frjo
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-6--1
Changes since 1.10: +19 -17 lines
File MIME type: text/x-php
Update to Drupal 6 of the Slash theme.
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>">
3
4 <head>
5 <title><?php print $head_title ?></title>
6 <?php print $head ?>
7 <?php print $styles ?>
8
9 <!--[if lt IE 8]>
10 <link rel="stylesheet" type="text/css" media="all" href="<?php print $base_path . $directory .'/fix-ie.css'; ?>" />
11 <![endif]-->
12 <link rel="stylesheet" type="text/css" media="print" href="<?php print $base_path . $directory .'/print.css' ?>" />
13
14 <?php print $scripts ?>
15 </head>
16
17 <body class="<?php print $body_classes ?>">
18 <div id="body-wrapper">
19 <div id="header" class="clear-block">
20
21 <?php if ($logo): ?>
22 <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img id="logo" src="<?php print($logo) ?>" alt="Logo" /></a>
23 <?php endif; ?>
24
25 <?php print $search_box ?>
26
27 <?php if ($site_name): ?>
28 <h1 id="site-name"><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1>
29 <?php endif;?>
30 <?php if ($site_slogan): ?>
31 <span id="site-slogan"><?php print $site_slogan ?></span>
32 <?php endif;?>
33 </div>
34
35 <?php if ($primary_links): ?>
36 <div id="top-nav" class="clear-block">
37 <?php print theme('links', $primary_links, array('id' => 'primary')) ?>
38 </div>
39 <?php endif; ?>
40
41 <?php if ($secondary_links): ?>
42 <div id="top-nav2" class="clear-block">
43 <?php print theme('links', $secondary_links, array('id' => 'secondary')) ?>
44 </div>
45 <?php endif; ?>
46
47 <?php if ($header): ?>
48 <div id="header-block" class="clear-block"><?php print $header ?></div>
49 <?php endif; ?>
50
51 <table id="content-<?php print $layout ?>"><tbody id="content-main"><tr>
52 <?php if ($left): ?>
53 <td id="sidebar-left" class="column sidebar" valign="top">
54 <?php print $left ?>
55 </td>
56 <?php endif; ?>
57
58 <td id="main" class="column" valign="top">
59
60 <?php if ($mission): ?>
61 <div id="mission"><?php print $mission ?></div>
62 <?php endif; ?>
63
64 <?php print $breadcrumb ?>
65
66 <?php if (($title) && (dirname($_GET['q']) != 'node' || $title == t('Page not found'))): ?>
67 <h2 class="title"><?php print $title ?></h2>
68 <?php endif; ?>
69
70 <?php if ($tabs): ?>
71 <div id="tabs-wrapper" class="clear-block"><?php print $tabs ?></div>
72 <?php endif; ?>
73 <?php print $help ?>
74 <?php if ($show_messages && $messages): ?>
75 <?php print $messages ?>
76 <?php endif; ?>
77 <div class="clear-block"><?php print $content ?></div>
78 <?php print $feed_icons ?>
79
80 </td>
81
82 <?php if ($right): ?>
83 <td id="sidebar-right" class="column sidebar" valign="top">
84 <?php print $right ?>
85 </td>
86 <?php endif; ?>
87
88 </tr></tbody>
89 </table>
90
91 <!-- footer -->
92 <div id="footer">
93 <?php print $footer_message ?>
94 </div></div>
95 <?php print $closure ?>
96 </body>
97 </html>

  ViewVC Help
Powered by ViewVC 1.1.2