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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Mon Dec 29 00:23:59 2008 UTC (10 months, 3 weeks ago) by ktleow
Branch: MAIN
CVS Tags: DRUPAL-6--1-0-BETA1, HEAD
File MIME type: text/x-php
*** empty log message ***
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 ?>" dir="<?php print $language->dir ?>">
3
4 <head>
5 <title><?php print $head_title; ?></title>
6 <?php print $head; ?>
7 <?php print $styles; ?>
8 <!--[if lte IE 6]>
9 <link type="text/css" rel="stylesheet" media="all" href="<?php print $base_path ?><?php print path_to_theme() ?>/fix-ie-6.css" />
10 <![endif]-->
11 <?php print $scripts; ?>
12 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyled Content in IE */ ?> </script>
13 </head>
14 <body>
15 <div id="page-upper">
16 <div id="header" class="container">
17 <div id="logo-and-site-name">
18 <?php if (!empty($logo)): ?>
19 <a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home">
20 <img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" />
21 </a>
22 <?php endif; ?>
23 <?php if (!empty($site_name)): ?>
24 <div id="site-name">
25 <a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home">
26 <?php print $site_name; ?>
27 </a>
28 </div> <!-- /#site-name -->
29 <?php endif; ?>
30 </div> <!-- /#logo-and-site-name -->
31
32 <?php if (!empty($primary_links)): ?>
33 <div id="primary">
34 <?php print menu_tree($menu_name = 'primary-links') ?>
35 </div> <!-- /#primary -->
36 <?php endif; ?>
37 </div> <!-- /#header -->
38
39 <div id="main-and-sidebars" class="container clear-block">
40 <div id="main">
41 <?php if (!empty($breadcrumb)): ?><div id="breadcrumb"><?php print $breadcrumb; ?></div><?php endif; ?>
42 <?php if (!empty($mission)): ?><div id="mission"><?php print $mission; ?></div><?php endif; ?>
43 <?php if (!empty($title)): ?><h1 class="title" id="page-title"><?php print $title; ?></h1><?php endif; ?>
44 <?php if (!empty($content_top)): ?>
45 <div id="content-top">
46 <?php print $content_top; ?>
47 </div> <!-- /#content-top -->
48 <?php endif; ?>
49 <?php if (!empty($tabs)): ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?>
50 <?php if (!empty($messages) || !empty($help)): ?>
51 <div class="clear-block">
52 <?php if (!empty($messages)): print $messages; endif; ?>
53 <?php if (!empty($help)): print $help; endif; ?>
54 </div>
55 <?php endif; ?>
56 <div id="content" class="clear-block">
57 <?php print $content; ?>
58 </div> <!-- /#content -->
59 </div> <!-- /#main -->
60
61 <div id="sidebars">
62 <?php if (!empty($left_and_right_joined)): ?>
63 <div id="left-and-right-sidebar-joined">
64 <?php print $left_and_right_joined; ?>
65 </div> <!-- /#left-and-right-sidebar-joined -->
66 <?php endif; ?>
67
68 <div id="left-and-right-sidebar" class="clear-block">
69 <div id="left-sidebar">
70 <?php print $left; ?>
71 </div> <!-- /#left-sidebar -->
72
73 <div id="right-sidebar">
74 <?php print $right; ?>
75 </div> <!-- /#right-sidebar -->
76 </div> <!-- /#left-and-right-sidebar -->
77 </div> <!-- /#sidebars -->
78 </div> <!-- /#main-and-sidebars -->
79 </div> <!-- /#page-upper -->
80
81 <div id="page-lower">
82 <div id="footer" class="container clear-block">
83 <?php if (!empty($secondary_links)): ?>
84 <div id="secondary">
85 <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')); ?>
86 </div> <!-- /#secondary -->
87 <?php endif; ?>
88
89 <div id="footer-message">
90 <?php print $footer_message; ?><br />Clearblue <?php print t('theme designed by'); ?> <a href="http://papermilkdesign.com/">Nicholas Wagner</a>
91 </div> <!-- /#footer-message -->
92 </div> <!-- /#footer -->
93 </div> <!-- /#page-lower -->
94
95 <?php print $closure; ?>
96
97 </body>
98 </html>

  ViewVC Help
Powered by ViewVC 1.1.2