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

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

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


Revision 1.2 - (show annotations) (download) (as text)
Mon Sep 24 06:57:54 2007 UTC (2 years, 2 months ago) by chrisherberte
Branch: MAIN
CVS Tags: DRUPAL-5--2-0, HEAD
Changes since 1.1: +8 -7 lines
File MIME type: text/x-php
tidy-up styles
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 <head>
4 <title><?php print $head_title ?></title>
5 <meta name="author" content="Chris Herberte http://www.xweb.com.au" />
6 <?php print $head ?>
7 <?php print $styles ?>
8 <?php print $scripts ?>
9 <script type="text/javascript"> <!-- FOUC Fix ( not needed if loading ie-hack.css --> </script>
10 </head>
11
12 <body>
13 <div id="page" class="<?php if ($sidebar_left || $sidebar_right) { print "one-sidebar"; } if ($sidebar_right && $sidebar_left) { print " two-sidebars"; }?>">
14
15 <div id="header">
16 <div class="menu">
17 <div id="primary" class="clear-block">
18 <?php print theme('links', $primary_links) ?>
19 </div>
20 </div>
21
22 <div id="logotitle">
23 <?php if ($logo) { ?>
24 <a href="<?php print $base_path ?>" title="Home"><img src="<?php print $logo ?>" alt="Home" id="logo" /></a>
25 <?php } ?>
26
27 <?php if ($site_name): ?>
28 <h1 id='sitename'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1>
29 <?php endif; ?>
30
31 <?php if ($site_slogan): ?>
32 <div id='site-slogan'>
33 <?php print $site_slogan ?>
34 </div>
35 <?php endif; ?>
36
37 </div>
38
39 <?php if ($header): ?>
40 <div id="header-region">
41 <?php print $header ?>
42 </div>
43 <?php endif; ?>
44
45 </div>
46
47 <div id="container" class="<?php if ($sidebar_left) { print "withleft"; } if ($sidebar_right) { print " withright"; }?> clear-block">
48 <div id="main-wrapper">
49 <div id="main" class="clear-block">
50 <?php print $breadcrumb ?>
51 <?php if ($mission): ?><div id="mission"><?php print $mission ?></div><?php endif; ?>
52 <?php if ($content_top):?><div id="content-top"><?php print $content_top ?></div><?php endif; ?>
53 <?php if ($title): ?><h1 class="title"><?php print $title ?></h1><?php endif; ?>
54 <?php if ($tabs): ?><div class="tabs"><?php print $tabs ?></div><?php endif; ?>
55 <?php print $help ?>
56 <?php print $messages ?>
57 <?php print $content ?>
58 <?php if ($content_bottom): ?><div id="content-bottom"><?php print $content_bottom ?></div><?php endif; ?>
59 </div>
60 </div>
61
62 <?php if ($sidebar_left): ?>
63 <div id="left" class="sidebar">
64 <?php print $search_box ?>
65 <?php print $sidebar_left ?>
66 </div>
67 <?php endif; ?>
68
69 <?php if ($sidebar_right): ?>
70 <div id="right" class="sidebar">
71 <?php print $sidebar_right ?>
72 </div>
73 <?php endif; ?>
74
75 </div>
76
77 <div id="footer">
78 <?php if ($secondary_links): ?>
79 <div id="secondary" class="clear-block">
80 <?php print theme('links', $secondary_links) ?>
81 </div>
82 <?php endif; ?>
83
84 <div id="xweb" class="clear-block"">
85 <?php if (strlen($footer_message)> 1): ?><?php print $footer_message . "::" ?><?php endif; ?>
86 Design by <a href="http://www.xweb.com.au">Chris Herberte</a></div>
87
88 </div>
89
90 <?php print $closure ?>
91 </div>
92 </body>
93 </html>

  ViewVC Help
Powered by ViewVC 1.1.2