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

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

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


Revision 1.7 - (show annotations) (download) (as text)
Fri Sep 12 18:50:47 2008 UTC (14 months, 2 weeks ago) by frjo
Branch: MAIN
CVS Tags: HEAD
Changes since 1.6: +20 -16 lines
File MIME type: text/x-php
Update to Drupal 6 of the Hiroshigeblue theme.
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
9 <!--[if lt IE 8]>
10 <link rel="stylesheet" type="text/css" media="all" href="<?php print $base_path . $directory .'/fix-ie.css'; ?>" />
11 <![endif]-->
12 <link rel="stylesheet" type="text/css" media="print" href="<?php print $base_path . $directory .'/print.css' ?>" />
13
14 <?php print $scripts ?>
15 </head>
16
17 <body class="<?php print $body_classes ?>">
18 <div id="body-wrapper">
19 <div id="top-header" class="clear-block">
20 <?php if ($site_slogan): ?>
21 <div id="site-slogan"><?php print $site_slogan ?></div>
22 <?php endif;?>
23 <?php print $search_box ?>
24 </div>
25
26 <div id="header" class="clear-block">
27 <?php if ($logo): ?>
28 <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img id="logo" src="<?php print $logo ?>" alt="Logo" /></a>
29 <?php endif; ?>
30
31 <?php if ($site_name): ?>
32 <h1 id="site-name"><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1>
33 <?php endif; ?>
34 </div>
35
36 <?php if ($primary_links): ?>
37 <div id="top-nav" class="clear-block">
38 <?php print theme('links', $primary_links, array('id' => 'primary')) ?>
39 </div>
40 <?php endif; ?>
41
42 <?php if ($secondary_links): ?>
43 <div id="top-nav2" class="clear-block">
44 <?php print theme('links', $secondary_links, array('id' => 'secondary')) ?>
45 </div>
46 <?php endif; ?>
47
48 <?php if ($header): ?>
49 <div id="header-block" class="clear-block"><?php print $header ?></div>
50 <?php endif; ?>
51
52 <div id="content-<?php print $layout ?>">
53
54 <div id="main" class="column">
55
56 <?php if ($content_top): ?>
57 <div id="content-top" class="clear-block"><?php print $content_top ?></div>
58 <?php endif; ?>
59
60 <?php if ($mission): ?>
61 <div id="mission"><?php print $mission ?></div>
62 <?php endif; ?>
63
64 <?php print $breadcrumb ?>
65
66 <?php if ($title): ?>
67 <h2 class="title<?php print $node ? ' nodetitle' : ''; print $tabs ? ' withtabs' : ''; ?>"><?php print $title ?></h2>
68 <?php endif; ?>
69
70 <?php if ($tabs): ?>
71 <div id="tabs-wrapper" class="clear-block"><?php print $tabs ?></div>
72 <?php endif; ?>
73
74 <?php print $help ?>
75 <?php if ($show_messages && $messages): ?>
76 <?php print $messages ?>
77 <?php endif; ?>
78 <div class="clear-block"><?php print $content ?></div>
79 <?php print $feed_icons ?>
80
81 <?php if ($content_bottom): ?>
82 <div id="content-bottom" class="clear-block"><?php print $content_bottom ?></div>
83 <?php endif; ?>
84
85 </div>
86
87 <?php if ($left): ?>
88 <div id="sidebar-left" class="column sidebar">
89 <?php print $left ?>
90 </div>
91 <?php endif; ?>
92
93 <?php if ($right): ?>
94 <div id="sidebar-right" class="column sidebar">
95 <?php print $right ?>
96 </div>
97 <?php endif; ?>
98
99 </div>
100
101 <!-- footer -->
102 <div id="footer">
103 <?php print $footer_message ?>
104 </div></div>
105 <?php print $closure ?>
106 </body>
107 </html>

  ViewVC Help
Powered by ViewVC 1.1.2