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

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

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


Revision 1.6 - (show annotations) (download) (as text)
Sat Apr 25 06:15:56 2009 UTC (7 months ago) by hswong3i
Branch: MAIN
CVS Tags: HEAD
Changes since 1.5: +2 -2 lines
File MIME type: text/x-php
- sync with 6.x-1.x-dev.
1 <?php
2 // $Id: page.tpl.php,v 1.2.2.3 2009/04/25 06:15:03 hswong3i Exp $
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" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
5
6 <head profile="http://gmpg.org/xfn/11">
7 <title><?php print $head_title ?></title>
8 <?php print $head ?>
9 <?php print $styles ?>
10 <?php print $scripts ?>
11 <!--[if lt IE 7]>
12 <?php print phptemplate_get_ie_styles(); ?>
13 <![endif]-->
14 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
15 </head>
16
17 <body class="<?php print $body_classes ?>">
18 <div id="header-region" class="clear-block"><?php print $header ?></div>
19 <div id="wrapper"><!-- begin wrapper -->
20 <div id="container" class="clear-block"><!-- begin container -->
21 <div id="header"><!-- begin header -->
22 <?php if ($logo): ?><div id="logo"><a href="<?php print $front_page ?>" title="<?php print $site_name ?>"><img src="<?php print $logo ?>" alt="<?php print $site_name ?>" /></a></div><?php endif; ?>
23 <div id="slogan-floater"><!-- begin slogan-floater -->
24 <?php if ($site_name): ?><h1 class='site-name'><a href="<?php print $front_page ?>" title="<?php print $site_name ?>"><?php print $site_name ?></a></h1><?php endif; ?>
25 <?php if ($site_slogan): ?><div class='site-slogan'><?php print $site_slogan ?></div><?php endif; ?>
26 </div><!-- end slogan-floater -->
27 <?php if (isset($primary_links)) : ?><!-- begin primary_links -->
28 <?php print theme('links', $primary_links, array('class' => 'primary-links')) ?>
29 <?php endif; ?><!-- end primary_links -->
30 </div><!-- end header -->
31 <?php if ($mission): print '<div id="mission">'. phptemplate_mission() .'</div>'; endif; ?>
32 <div id="main"><div class="right-corner"><div class="left-corner"><!-- begin main -->
33 <?php if ($left) { ?>
34 <div id="sidebar-left" class="sidebar"><!-- begin sidebar-left -->
35 <?php if ($search_box): ?><div class="block block-theme"><?php print $search_box ?></div><?php endif; ?>
36 <?php print $left ?>
37 </div><!-- end sidebar-left -->
38 <?php } ?>
39 <div id="center"><div id="squeeze"><!-- begin center -->
40 <?php print $breadcrumb ?>
41 <?php if ($title): print '<h2 class="title'. ($tabs ? ' with-tabs' : '') .'">'. $title .'</h2>'; endif; ?>
42 <?php if ($tabs): print '<div class="tabs">'. $tabs .'</div>'; endif; ?>
43 <?php if ($show_messages && $messages): print $messages; endif; ?>
44 <?php print $help ?>
45 <div class="clear-block">
46 <?php print $content ?>
47 </div>
48 <?php print $feed_icons ?>
49 </div></div><!-- end center -->
50 <?php if ($right) { ?>
51 <div id="sidebar-right" class="sidebar"><!-- begin sidebar-right -->
52 <?php if (!$left && $search_box): ?><div class="block block-theme"><?php print $search_box ?></div><?php endif; ?>
53 <?php print $right ?>
54 </div><!-- end sidebar-right -->
55 <?php } ?>
56 </div></div></div><!-- end main -->
57 </div><!-- end wrapper -->
58 </div><!-- end container -->
59 <div id="footer"><!-- start footer -->
60 <?php print $footer_message ?>
61 <?php print $footer ?>
62 </div><!-- end footer -->
63 <?php print $closure ?>
64 </body>
65 </html>

  ViewVC Help
Powered by ViewVC 1.1.2