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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Tue Feb 12 04:32:52 2008 UTC (21 months, 1 week ago) by collectivecolors
Branch: MAIN
CVS Tags: DRUPAL-5--2-2, DRUPAL-5--2-3, DRUPAL-5--2-1, HEAD
Branch point for: DRUPAL-5--2
File MIME type: text/x-php
original bluefire 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 ?>" xml:lang="<?php print $language ?>">
3
4 <head>
5
6 <!--
7 BlueFire theme designed and built by Derek Webb of http://CollectiveColors.com
8 Please see me if you would like to have modifications made to your website.
9
10 Email me at: derek(at)collectivecolors(dot)com
11 //-->
12
13 <title><?php print $head_title ?></title>
14 <?php print $head ?>
15 <?php print $styles ?>
16 <?php print $scripts ?>
17
18
19 <!--[if lt IE 7]>
20 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
21 <script defer type="text/javascript" src="/themes/bluefire/pngfix.js"></script>
22 <![endif]-->
23
24
25 </head>
26
27 <body>
28
29 <!-- [ Header and logo area ] -->
30 <div class='header-div'>
31
32 <div class='header-left-div'>
33 <?php if ($logo) { ?><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" class='logo-img' /></a><?php } ?>
34
35 <div class='site-info-div'>
36 <?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
37 <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
38 </div>
39 </div>
40
41 <div class='header-right-div'>
42
43 <?php if($search_box) { ?>
44 <div class='searchbox-div'>
45 <?php print $search_box ?>
46 </div>
47 <?php } ?>
48
49 <!-- [ header blocks are meant only for inline menus they are displayed beneath the searchbox ] -->
50 <?php if($header) { ?>
51 <div class='header-blocks-div'><?php print $header ?></div>
52 <?php } ?>
53
54 </div>
55
56 <div class='clear'></div>
57
58 </div>
59
60
61 <!-- [ Primary and secondary links area ] -->
62 <div class='links-div'>
63
64 <!-- [ Check for primary links ] -->
65 <?php if(!empty($primary_links)) { ?>
66 <div class='plinks-div'>
67 <?php print theme('links', $primary_links, array('class' =>'links', 'id' => 'navlist')) ?>
68 </div>
69 <?php } ?>
70
71 <!-- [ Check for secondary links ] -->
72 <?php if(!empty($secondary_links)) { ?>
73 <div class='slinks-div'>
74 <?php print theme('links', $secondary_links, array('class' =>'links', 'id' => 'subnavlist')) ?>
75 </div>
76 <?php } ?>
77
78 </div>
79
80
81 <!-- [ Main content body area ] -->
82 <!-- [ Check for sidebar - we handle the content section differently if there is none ] -->
83 <?php if (!empty($sidebar)) { ?>
84 <div class='main-div'>
85 <div class='content-div'>
86 <?php } else { ?>
87 <div class='main-nosb-div'>
88 <div class='content-nosb-div'>
89 <?php } ?>
90
91 <!-- [ Content mid div allows padding without disrupting the containing floating div (content) ] -->
92 <div class='content-mid-div'>
93
94 <?php if($mission) { ?><div class="mission-div"><?php print check_plain($mission) ?></div><?php } ?>
95 <?php if($breadcrumb) { ?><div class='bc-div'><?php print $breadcrumb ?></div><?php } ?>
96
97 <h1 class="title"><?php print $title ?></h1>
98 <div class="tabs-div"><?php print $tabs ?></div>
99
100 <?php print $help ?>
101 <?php print $messages ?>
102
103 <!-- [ Content inner div allows padding without disrupting the containing floating div (content) ] -->
104 <div class='content-inner-div'>
105
106 <!-- [ Begin Content ] -->
107 <?php print $content; ?>
108 <!-- [ End Content ] -->
109
110 <?php if($body) { ?>
111 <div class='body-blocks-div'>
112 <?php print $body ?>
113 </div>
114 <?php } ?>
115
116 </div>
117
118 <?php print $feed_icons; ?>
119 </div>
120 </div>
121
122 <!-- [ Sidebar left area - floats right too - ensures that content is first to process - SEO ] -->
123 <?php if($sidebar) { ?>
124 <div class='sidebar-div'>
125 <!-- [ Sidebar inner div allows padding without disrupting the containing floating div (content) ] -->
126 <div class='sidebar-inner-div'>
127 <?php print $sidebar ?>
128 </div>
129 </div>
130 <?php } ?>
131
132 <div class='clear'></div>
133
134 </div>
135
136 <div class='footer-div'>
137 <?php print $footer_message ?>
138 </div>
139 <?php print $closure ?>
140
141 </body>
142 </html>
143

  ViewVC Help
Powered by ViewVC 1.1.2