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

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

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


Revision 1.8 - (show annotations) (download) (as text)
Sat Feb 16 12:36:12 2008 UTC (21 months, 1 week ago) by chrisherberte
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-6--2
Changes since 1.7: +2 -2 lines
File MIME type: text/x-php
fix for variables stuff-up, somehow i've commited 6.x version to 5.x branch
oops :P
1 <?php
2 // $Id:
3 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
5
6 <head>
7 <title><?php print $head_title ?></title>
8 <meta name="author" content="Chris Herberte http://www.xweb.com.au" />
9 <?php print $head ?>
10 <?php print $styles ?>
11 <?php print $scripts ?>
12 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
13 </head>
14
15 <body>
16 <div id="container">
17 <div id="headerwraper">
18 <div id="header">
19
20 <div id="headerleft">
21 <?php if ($logo) { ?><a href="<?php print $base_path ?>" title="Home"><img src="<?php print $logo ?>" alt="Home" /></a><?php } ?>
22 <?php if ($site_name) { ?><span id="sitename"><a href="<?php print $base_path ?>" title="Home"><?php print $site_name ?></a></span><?php } ?>
23 <?php if ($site_slogan) { ?><span id="slogan"><?php print $site_slogan ?></span><?php } ?>
24 </div>
25
26 <div id="headerright">
27 <?php if ($primary_links) { ?><span id="primarylinks"><?php print theme('links', $primary_links) ?></span><?php } ?>
28 </div>
29
30 </div>
31 </div>
32
33 <div id="main">
34 <div id="sidebar">
35 <?php if ($sidebar_left) { ?><?php print $sidebar_left ?><?php } ?>
36 <?php if ($sidebar_right) { ?><?php print $sidebar_right ?><?php } ?>
37 </div>
38
39 <div id="contentwraper">
40 <div id="content">
41 <?php if ($show_messages) { print $messages; } ?>
42 <h2 class="title"><?php print $title ?></h2>
43 <?php print $breadcrumb; ?>
44 <?php print $help ?>
45 <?php print $tabs ?>
46 <?php print $content; ?>
47 <?php print $feed_icons ?>
48 </div>
49 </div>
50 <div class="clear"></div>
51 </div>
52
53 <div id="footerwraper">
54 <div id="footer">
55 <?php print $footer_message ?>
56 <?php if (isset($secondary_links)) { ?>
57 <?php print theme('links', $secondary_links, array('class' =>'links', 'id' => 'seclink')) ?>
58 <?php } ?>
59 <span id="designby">
60 <?php if ($site_name) { ?>&copy; 2006 <?php print $site_name ?> : <?php } ?>Design by <a href="http://www.xweb.com.au/">Chris Herberte</a>
61 </span>
62 </div>
63 </div>
64 </div>
65 <div class="clear"><?php print $closure ?></div>
66
67 </body>
68 </html>

  ViewVC Help
Powered by ViewVC 1.1.2