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

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

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


Revision 1.7 - (show annotations) (download) (as text)
Thu Feb 7 01:43:31 2008 UTC (21 months, 2 weeks ago) by bevan
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-6--1
Changes since 1.6: +7 -8 lines
File MIME type: text/x-php
#209375 by DanW
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 <?php print $scripts ?>
9 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
10 </head>
11
12 <body id="<?php if ($is_front) { print 'home'; } else { print 'second'; } ?>">
13 <div id="page" class="<?php if ($left || $right) { print "one-sidebar"; } if ($right && $left) { print " two-sidebars"; }?>">
14
15 <div id="header">
16
17 <div id="logo-title">
18
19 <?php if ($logo): ?>
20 <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">
21 <img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" id="logo" />
22 </a>
23 <?php endif; ?>
24
25 <?php if ($site_name): ?>
26 <h1 id='site-name'>
27 <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>">
28 <?php print $site_name ?>
29 </a>
30 </h1>
31 <?php endif; ?>
32
33 <?php if ($site_slogan): ?>
34 <div id='site-slogan'>
35 <?php print $site_slogan ?>
36 </div>
37 <?php endif; ?>
38
39 </div>
40
41 <div class="menu <?php print isset($primary_links) ? 'withprimary' : ''; print isset($secondary_links) ? 'withsecondary' : ''?>">
42 <?php if (isset($primary_links)): ?>
43 <div id="primary" class="clear-block">
44 <?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
45 </div>
46 <?php endif; ?>
47
48 <?php if (isset($secondary_links)): ?>
49 <div id="secondary" class="clear-block">
50 <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
51 </div>
52 <?php endif; ?>
53 </div>
54
55 <?php if ($header): ?>
56 <div id="header-region">
57 <?php print $header ?>
58 </div>
59 <?php endif; ?>
60
61 </div>
62
63 <div id="container" class="<?php if ($left) { print "withleft"; } if ($right) { print " withright"; }?> clear-block">
64
65 <div id="main-wrapper">
66 <div id="main" class="clear-block">
67 <?php print $breadcrumb ?>
68 <?php if ($mission): ?><div id="mission"><?php print $mission ?></div><?php endif; ?>
69 <?php if ($content_top):?><div id="content-top"><?php print $content_top ?></div><?php endif; ?>
70 <?php if ($title): ?><h1 class="title"><?php print $title ?></h1><?php endif; ?>
71 <?php if ($tabs): ?><div class="tabs"><?php print $tabs ?></div><?php endif; ?>
72 <?php print $help ?>
73 <?php print $messages ?>
74 <?php print $content ?>
75 <?php if ($content_bottom): ?><div id="content-bottom"><?php print $content_bottom ?></div><?php endif; ?>
76 </div>
77 </div>
78
79 <?php if ($left): ?>
80 <div id="sidebar-left" class="sidebar">
81 <?php print $search_box ?>
82 <?php print $left ?>
83 </div>
84 <?php endif; ?>
85
86 <?php if ($right): ?>
87 <div id="sidebar-right" class="sidebar">
88 <?php print $right ?>
89 </div>
90 <?php endif; ?>
91
92 </div>
93
94 <div id="footer">
95 <?php print $footer_message ?>
96 </div>
97
98
99 <?php print $closure ?>
100
101 </div>
102
103 </body>
104 </html>

  ViewVC Help
Powered by ViewVC 1.1.2