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

Contents of /contributions/themes/1024px/page.tpl.php

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


Revision 1.3 - (show annotations) (download) (as text)
Thu Jun 18 11:17:15 2009 UTC (5 months, 1 week ago) by nickbits
Branch: MAIN
CVS Tags: DRUPAL-6--1-2, HEAD
Changes since 1.2: +55 -51 lines
File MIME type: text/x-php
Verical centering
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" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>">
3 <head>
4 <title><?php print $head_title ?></title>
5 <?php print $head ?>
6 <?php print $styles ?>
7 <?php print $scripts ?>
8 </head>
9 <body<?php print phptemplate_body_class($left, $right); ?>>
10 <!-- Layout -->
11 <div id="wrapper-3">
12 <div id="wrapper-2">
13 <div id="wrapper">
14 <div id="header">
15 <p id="toplinks">Skip to: <a href="#content">Content</a> | <a href="#footer">Footer</a></p>
16 <?php print $header; ?>
17
18 <?php if ($logo): ?>
19 <a href="<?php print check_url($front_page); ?>" title="<?php print check_plain($site_name); ?>">
20 <img src="<?php print check_url($logo); ?>" alt="<?php print check_plain($site_name); ?>" id="logo" />
21 </a>
22 <?php endif; ?>
23 <?php print '<h1><a href="'. check_url($front_page) .'" title="'. check_plain($site_name) .'">';
24 if ($site_name) {
25 print '<span id="sitename">'. check_plain($site_name) .'</span>';
26 }
27 ?>
28 </a></h1>
29 <?php
30 if ($site_slogan) {
31 print '<p>'. check_plain($site_slogan) .'</p>';
32 }
33 ?>
34 <div class="clear"></div>
35 </div> <!-- /#header -->
36 <div id="container" class="clear">
37 <?php if ($left): ?>
38 <div id="sidebar-left" class="sidebar">
39 <?php print $left ?>
40 </div> <!-- /#sidebar-left -->
41 <?php endif; ?>
42 <div id="center">
43 <?php print $breadcrumb; ?>
44 <?php if ($mission): print '<div id="mission">'. $mission .'</div>'; endif; ?>
45 <?php if ($tabs): print '<div id="tabs-wrapper" class="clear-block">'; endif; ?>
46 <?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>
47 <?php if ($tabs): print '<ul class="tabs primary">'. $tabs .'</ul></div>'; endif; ?>
48 <?php if ($tabs2): print '<ul class="tabs secondary">'. $tabs2 .'</ul>'; endif; ?>
49 <?php if ($show_messages && $messages): print $messages; endif; ?>
50 <?php print $help; ?>
51 <a name="content"></a>
52 <?php print $content ?>
53 </div> <!-- /#center -->
54 <?php if ($right): ?>
55 <div id="sidebar-right" class="sidebar">
56 <?php print $right ?>
57 </div> <!-- /#sidebar-right -->
58 <?php endif; ?>
59 <div id="footer" class="clear">
60 <?php print $footer_message . $footer; ?>
61 <p>Original design by <a href='http://andreasviklund.com/'>Andreas Viklund</a> | Drupal port by <a href='http://www.nickbits.co.uk'>Nick Young</a></p>
62 </div> <!-- /#footer -->
63 </div> <!-- /#container -->
64 </div> <!-- /#wrapper -->
65 </div> <!-- /#wrapper2 -->
66 </div> <!-- /#wrapper3 -->
67 <!-- /layout -->
68 <?php print $closure ?>
69 </body>
70 </html>

  ViewVC Help
Powered by ViewVC 1.1.2