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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Tue Feb 6 14:21:15 2007 UTC (2 years, 9 months ago) by batumaru
Branch: MAIN
CVS Tags: DRUPAL-5--1-1, DRUPAL-5--1-0, DRUPAL-5--1-3, DRUPAL-5--1-2, HEAD
File MIME type: text/x-php
*** empty log message ***
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 ?>" xml:lang="<?php print $language ?>">
3
4 <head>
5 <title><?php print $head_title ?></title>
6 <?php print $head ?>
7 <?php print $styles ?>
8 <?php print $scripts ?>
9 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
10 </head>
11
12 <body>
13 <table border="0" cellpadding="0" cellspacing="0" id="header">
14 <tr>
15 <td id="logo" rowspan="3">
16 <?php if ($logo) { ?><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
17 </td>
18 <td id="logo_title" colspan="2">
19 <?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
20 <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
21 </td>
22 <tr>
23 <td id="header_link">
24 <?php if (isset($secondary_links)) { ?><?php print theme('links', $secondary_links, array('class' =>'links', 'id' => 'subnavlist')) ?><?php } ?>
25 <?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' =>'links', 'id' => 'navlist')) ?><?php } ?>
26 </td>
27 </tr>
28 <tr>
29 <td id="header_block"><?php print $header ?></td>
30 <td id="header_search"><?php print $search_box ?></td>
31 </tr>
32 </table>
33
34 <table border="0" cellpadding="0" cellspacing="0" id="content">
35 <tr>
36 <?php if ($sidebar_left) { ?><td id="sidebar-left">
37 <?php print $sidebar_left; ?>
38 </td><?php } ?>
39 <td valign="top">
40 <?php if ($mission) { ?><div id="mission"><?php print $mission; ?></div><?php } ?>
41 <div id="main">
42 <?php print $breadcrumb; ?>
43 <div class="tabs"><?php print $tabs; ?></div>
44 <?php print $help; ?>
45 <?php print $messages; ?>
46 <?php print $content; ?>
47 <?php print $feed_icons; ?>
48 </div>
49 </td>
50 <?php if ($sidebar_right) { ?><td id="sidebar-right">
51 <?php print $sidebar_right; ?>
52 </td><?php } ?>
53 </tr>
54 </table>
55
56 <div id="footer">&nbsp;<?php print $footer_message; ?></div>
57 <?php print $closure; ?>
58 </body>
59 </html>

  ViewVC Help
Powered by ViewVC 1.1.2