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

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

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


Revision 1.8 - (show annotations) (download) (as text)
Wed Mar 11 15:35:44 2009 UTC (8 months, 2 weeks ago) by johnalbin
Branch: MAIN
CVS Tags: HEAD
Changes since 1.7: +41 -49 lines
File MIME type: text/x-php
Updated files to those used in Drupal core HEAD.
1 <?php
2 // $Id: page.tpl.php,v 1.33 2009/02/18 14:28:24 webchick Exp $
3 ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
4 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>"
5 <?php print $rdf_namespaces ?>>
6 <head profile="<?php print $grddl_profile ?>">
7 <title><?php print $head_title ?></title>
8 <?php print $head ?>
9 <?php print $styles ?>
10 <?php print $scripts ?>
11 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
12 </head>
13
14 <body class="<?php print $body_classes; ?>">
15 <div id="header" class="clearfix">
16 <?php if ($search_box) { ?><div class="search-box"><?php print $search_box ?></div><?php }; ?>
17 <?php if ($logo) { ?><a class="logo" href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
18 <?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php }; ?>
19 <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
20
21 <div id="menu">
22 <?php if (isset($secondary_menu)) { ?><?php print theme('links', $secondary_menu, array('class' => 'links', 'id' => 'subnavlist')); ?><?php } ?>
23 <?php if (isset($main_menu)) { ?><?php print theme('links', $main_menu, array('class' => 'links', 'id' => 'navlist')) ?><?php } ?>
24 </div>
25
26 <div id="header-region"><?php print $header ?></div>
27 </div>
28
29 <div class="layout-columns">
30 <?php if ($left) { ?><div id="sidebar-left" class="column"><?php print $left ?></div><?php } ?>
31
32 <div id="main" class="column">
33 <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
34 <div class="inner">
35 <?php print $breadcrumb ?>
36 <h1 class="title"><?php print $title ?></h1>
37 <?php if ($tabs) { ?><div class="tabs"><?php print $tabs ?></div><?php } ?>
38 <?php print $help ?>
39 <?php if ($show_messages) { print $messages; } ?>
40 <?php print $content; ?>
41 <?php print $feed_icons; ?>
42 </div>
43 </div>
44
45 <?php if ($right) { ?><div id="sidebar-right" class="column"><?php print $right ?></div><?php } ?>
46 </div>
47
48 <div id="footer">
49 <?php print $footer_message ?>
50 <?php print $footer ?>
51 </div>
52
53 <?php print $closure ?>
54 </body>
55 </html>

  ViewVC Help
Powered by ViewVC 1.1.2