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

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

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


Revision 1.10 - (show annotations) (download) (as text)
Thu May 14 08:17:07 2009 UTC (6 months, 1 week ago) by hswong3i
Branch: MAIN
CVS Tags: HEAD
Changes since 1.9: +5 -7 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.9 2009/05/14 08:16:31 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($secondary_links)) : ?><!-- begin secondary_links -->
28 <?php print theme('links', $secondary_links, array('class' => 'secondary-links')) ?>
29 <?php endif; ?><!-- end secondary_links -->
30 </div><!-- end header -->
31 <?php if (isset($primary_links)) : ?><!-- begin primary_links -->
32 <?php print phptemplate_primary($primary_links); ?>
33 <?php endif; ?><!-- end primary_links -->
34 <div id="breadcrumb-search-region"><div class="right-corner"><div class="left-corner">
35 <?php print $breadcrumb ?>
36 <?php if ($search_box): ?><div class="block block-theme"><?php print $search_box ?></div><?php endif; ?>
37 <?php if ($mission): print '<div id="mission">'. phptemplate_mission() .'</div>'; endif; ?>
38 </div></div></div>
39 <div id="main"><div class="right-corner"><div class="left-corner"><!-- begin main -->
40 <?php if ($left) { ?>
41 <div id="sidebar-left" class="sidebar"><!-- begin sidebar-left -->
42 <?php print $left ?>
43 </div><!-- end sidebar-left -->
44 <?php } ?>
45 <div id="center"><div id="squeeze"><!-- begin center -->
46 <?php if ($title): print '<h2 class="title'. ($tabs ? ' with-tabs' : '') .'">'. $title .'</h2>'; endif; ?>
47 <?php if ($tabs): print '<div class="tabs">'. $tabs .'</div>'; endif; ?>
48 <?php if ($show_messages && $messages): print $messages; endif; ?>
49 <?php print $help ?>
50 <div class="clear-block">
51 <?php print $content ?>
52 </div>
53 <?php print $feed_icons ?>
54 </div></div><!-- end center -->
55 <?php if ($right) { ?>
56 <div id="sidebar-right" class="sidebar"><!-- begin sidebar-right -->
57 <?php print $right ?>
58 </div><!-- end sidebar-right -->
59 <?php } ?>
60 </div></div></div><!-- end main -->
61 <div id="footer"><!-- start footer -->
62 <?php print $footer_message ?>
63 <?php print $footer ?>
64 <!-- begin #287426 -->
65 <span style="display: none;">&nbsp;</span>
66 <!-- end #287426 -->
67 </div><!-- end footer -->
68 </div><!-- end container -->
69 </div><!-- end wrapper -->
70 <?php print $closure ?>
71 </body>
72 </html>

  ViewVC Help
Powered by ViewVC 1.1.2