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

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

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


Revision 1.17 - (show annotations) (download) (as text)
Thu Feb 19 15:20:18 2009 UTC (9 months ago) by plutado
Branch: MAIN
CVS Tags: DRUPAL-6--1-7, HEAD
Changes since 1.16: +1 -1 lines
File MIME type: text/x-php
#376669
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4
5 <head>
6 <title><?php print $head_title ?></title>
7 <?php print $head ?>
8 <?php print $styles ?>
9 <?php print $scripts ?>
10 <!--[if IE 7]>
11 <link rel="stylesheet" href="<?php print $base_path . $directory; ?>/css/ie7.css" type="text/css">
12 <![endif]-->
13 <!--[if IE 6]>
14 <link rel="stylesheet" href="<?php print $base_path . $directory; ?>/css/ie6.css" type="text/css">
15 <script defer type="text/javascript" src="<?php print $base_path . $directory; ?>/js/pngfix.js"></script>
16 <![endif]-->
17 </head>
18
19 <body>
20
21 <!-- leaderboard -->
22 <div id="leaderboard">
23 <?php if ($leaderboard): ?>
24 <?php print $leaderboard; ?>
25 <?php endif; ?><!-- endif $leaderboard -->
26 </div><!-- end leaderboard -->
27
28 <!-- header -->
29 <div id="header">
30 <?php if ($header): ?>
31 <?php print $header; ?>
32 <?php endif; ?><!-- endif $header -->
33 </div><!-- end header -->
34
35 <!-- custom login links -->
36 <div id="custom-login">
37 <?php global $user; ?>
38 <?php if ($user->uid) : ?>
39 <span class="login_text">Welcome, </span><b><?php print l($user->name,'user/'.$user->uid); ?> |
40 <?php print l("logout","logout"); ?> </b>
41 <?php else : ?>
42 <b><?php print l("Login","user/login"); ?> / <?php print l("Create an Account","user/register"); ?></b>
43 <?php endif; ?>
44 </div>
45
46 <div id="page-wrapper">
47
48 <!-- header-wrapper -->
49 <div id="header-wrapper">
50
51 <div id="logo-name">
52
53 <!-- site logo -->
54 <div id="site-logo">
55 <?php if ($logo): ?>
56 <a href="<?php print $base_path; ?>" title="<?php print t('return to the home page'); ?>">
57 <img src="<?php print $logo; ?>" alt="<?php print t('return to the home page'); ?>"/></a>
58 <?php endif; ?><!-- endif $logo -->
59 </div><!-- end site-logo -->
60
61 <!-- site name -->
62 <div id="site-name-slogan">
63
64 <div id="site-name">
65 <?php if ($site_name): ?>
66 <h1><a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>"><?php print $site_name; ?></a></h1>
67 <?php endif; ?><!-- endif $site_name -->
68 </div>
69
70 <!-- site slogan -->
71 <div id="site-slogan">
72 <?php if ($site_slogan): ?>
73 <?php print $site_slogan; ?>
74 <?php endif; ?><!-- endif $site_slogan -->
75 </div>
76
77 </div><!-- end site name -->
78
79 </div> <!-- end logo-name -->
80
81 <!-- theme search box -->
82 <div id="search-box">
83 <?php if ($search_box): ?>
84 <?php print $search_box; ?>
85 <?php endif; ?><!-- endif $search_box -->
86 </div>
87
88 </div><!-- end header-wrapper -->
89
90 <!-- main wrapper -->
91
92 <!-- primary links -->
93 <div id="primary">
94 <?php if (isset($primary_links)) { ?>
95 <div id="nav">
96 <?php print menu_tree('primary-links'); ?>
97 </div>
98 <?php } ?>
99 </div>
100 <!-- end primary links -->
101
102 <div id="main-wrapper-top"></div>
103 <div id="main-wrapper">
104
105 <?php if($ad_position_a && $top_data) : ?>
106 <div id="banner-top">
107 <div id="top-blocks">
108 <?php print $top_data; ?>
109 </div>
110 <div id="ad-position-a">
111 <?php print $ad_position_a; ?>
112 </div>
113 <br class="clear" />
114 </div>
115 <?php endif; ?>
116
117 <!-- tabs and secondary links -->
118 <div class="tabs">
119 <div class="secondary">
120 <?php print theme('links', $secondary_links); ?>
121 </div>
122 <?php if ($tabs): ?>
123 <?php print $tabs; ?>
124 <?php endif; ?>
125 </div>
126 <!-- end tabs -->
127
128 <!-- breadcrumbs -->
129 <?php if ($breadcrumb): ?>
130 <div id="breadcrumbs">
131 <?php print $breadcrumb; ?>
132 <div class="delimit"><?php print '<div class="delimit-1">ยป</div>' ?></div>
133 <div class="bread-title"><?php print $title; ?></div>
134 </div><!-- end breadcrumb -->
135 <?php endif; ?><!-- endif $breadcrumbs -->
136
137 <!-- messages -->
138 <?php if ($messages): ?>
139 <div id="help-messages">
140 <div id="messages">
141 <?php print $messages; ?>
142 </div><!-- end messages -->
143 </div>
144 <?php endif; ?><!-- endif $messages -->
145
146 <!-- sidebar top -->
147 <?php if ($top): ?>
148 <div id="sidebar-top-region">
149 <?php print $top; ?>
150 </div><!-- end sidebar-top-region -->
151 <?php endif; ?><!-- endif $sidebar_top -->
152
153 <!-- sidebar left -->
154 <?php if ($left): ?>
155 <div id="sidebar-left-region">
156 <?php print $left; ?>
157 </div><!-- end sidebar-left-region -->
158 <?php endif; ?><!-- endif $sidebar_left -->
159
160 <!-- sidebar right -->
161 <?php if ($right): ?>
162 <div id="sidebar-right-region">
163 <?php print $right ?>
164 </div><!-- end sidebar right -->
165 <?php endif; ?><!-- endif $sidebar_right -->
166
167 <!-- content -->
168
169 <div id="content-region-<?php print $layout ?>">
170
171 <!-- content top -->
172 <?php if ($content_top): ?>
173 <div id="content-top">
174 <?php print $content_top; ?>
175 </div><!-- end content-top -->
176 <?php endif; ?><!-- endif $content_top -->
177
178 <!-- help -->
179 <?php if ($help): ?>
180 <div id="help">
181 <?php print $help; ?>
182 </div><!-- help -->
183 <?php endif; ?><!-- endif help -->
184
185 <!-- site mission -->
186 <?php if ($mission): ?>
187 <div id="site-mission">
188 <?php print $mission; ?>
189 </div>
190 <?php endif; ?><!-- endif $mission -->
191
192 <!-- title -->
193 <h2 class="content-title"><?php print $title; ?></h2>
194
195 <!-- node content -->
196 <div class="node-content"><?php print $content; ?></div>
197
198 <!-- content bottom -->
199 <?php if ($content_bottom): ?>
200 <div id="content-bottom">
201 <?php print $content_bottom; ?>
202 </div><!-- end content-bottom -->
203 <?php endif; ?><!-- endif $content_bottom -->
204
205 </div><!-- end content -->
206
207 <!-- section bottom -->
208 <div id="section-bottom">
209 <?php if ($section_bottom): ?>
210 <?php print $section_bottom; ?>
211 <?php endif; ?><!-- endif $section_bottom -->
212 </div><!-- end section bottom -->
213
214 <div class="clear"></div>
215
216 </div><!-- end main-wrapper -->
217
218 <div id="main-wrapper-bottom"></div>
219
220 <div id="footer-region">
221
222 <!-- feed icons -->
223 <div id="feed-icons">
224 <?php print $feed_icons; ?>
225 </div>
226
227 <!-- footer text -->
228 <div id="credits">
229 <img src="<?php print base_path() . path_to_theme() ?>/images/drupal.png" />
230 <div class="credit-text">Designed by <a href="http://www.davidfugate.com">David Plutado Fugate</a>
231 </div>
232 </div><!-- end footer-text -->
233
234 <!-- footer text -->
235 <div id="footer-text">
236 <?php print $footer_message; ?>
237 </div><!-- end footer-text -->
238
239 </div><!-- end footer-region -->
240
241 <!-- footer ad -->
242 <?php if ($footer_ad): ?>
243 <div id="footer-ad">
244 <?php print $footer_ad; ?>
245 </div>
246 <?php endif; ?>
247
248 </div><!-- end page-wrapper -->
249
250 <?php print $closure ?>
251
252 </body>
253
254 </html>

  ViewVC Help
Powered by ViewVC 1.1.2