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

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

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


Revision 1.13 - (show annotations) (download) (as text)
Mon Oct 27 19:49:45 2008 UTC (13 months ago) by plutado
Branch: MAIN
CVS Tags: DRUPAL-5--1-12, HEAD
Changes since 1.12: +28 -16 lines
File MIME type: text/x-php
*** empty log message ***
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 ($primary_links): ?>
95
96 <?php if (isset($primary_links)) { ?>
97 <div id="nav">
98 <?php print theme('menu_tree',variable_get('menu_primary_menu',0)); ?>
99 </div>
100 <?php } ?>
101 <?php endif; ?>
102 </div> <!-- /#primary -->
103
104 <div id="main-wrapper-top"></div>
105 <div id="main-wrapper">
106 <?php if($ad_position_a && $top_data) : ?>
107 <div id="banner-top">
108 <div id="top-blocks">
109 <?php print $top_data; ?>
110 </div>
111 <div id="ad-position-a">
112 <?php print $ad_position_a; ?>
113 </div>
114 <br class="clear" />
115 </div>
116 <?php endif; ?>
117
118 <!-- tabs and secondary links -->
119 <div class="tabs">
120
121 <div class="secondary">
122 <?php print theme('links', $secondary_links); ?>
123 </div>
124
125 <?php if ($tabs): ?>
126 <?php print $tabs; ?>
127 <?php endif; ?><!-- endif $tabs -->
128
129 </div><!-- end tabs -->
130
131 <!-- breadcrumbs -->
132 <?php if ($breadcrumb): ?>
133 <div id="breadcrumbs">
134 <?php print $breadcrumb; ?>
135 <div class="delimit"><?php print '<div class="delimit-1">ยป</div>' ?></div>
136 <div class="bread-title"><?php print $title; ?></div>
137 </div><!-- end breadcrumb -->
138 <?php endif; ?><!-- endif $breadcrumbs -->
139
140 <!-- messages -->
141 <?php if ($messages): ?>
142 <div id="help-messages">
143 <div id="messages">
144 <?php print $messages; ?>
145 </div><!-- end messages -->
146 </div>
147 <?php endif; ?><!-- endif $messages -->
148
149 <!-- section top -->
150 <div id="section-top">
151 <?php if ($section_top): ?>
152 <?php print $section_top; ?>
153 <?php endif; ?><!-- endif $section_top -->
154 </div><!-- end section top -->
155
156 <!-- sidebar right -->
157 <?php if ($sidebar_right): ?>
158 <div id="sidebar-right-region">
159 <?php print $sidebar_right ?>
160 </div><!-- end sidebar right -->
161 <?php endif; ?><!-- endif $sidebar_right -->
162
163 <?php if ($sidebar_left): ?>
164 <div id="sidebar-left-region">
165 <?php print $sidebar_left; ?>
166 </div><!-- end sidebar-left-region -->
167 <?php endif; ?><!-- endif $sidebar_left -->
168
169 <!-- content -->
170
171 <div id="content-region-<?php print $layout ?>">
172
173 <!-- content top -->
174 <?php if ($content_top): ?>
175 <div id="content-top">
176 <?php print $content_top; ?>
177 </div><!-- end content-top -->
178 <?php endif; ?><!-- endif $content_top -->
179
180 <!-- help -->
181 <?php if ($help): ?>
182 <div id="help">
183 <?php print $help; ?>
184 </div><!-- help -->
185 <?php endif; ?><!-- endif help -->
186
187 <!-- site mission -->
188 <?php if ($mission): ?>
189 <div id="site-mission">
190 <?php print $mission; ?>
191 </div>
192 <?php endif; ?><!-- endif $mission -->
193
194 <!-- title -->
195 <h2 class="content-title"><?php print $title; ?></h2>
196
197 <!-- node content -->
198 <div class="node-content"><?php print $content; ?></div>
199
200 <!-- content bottom -->
201 <?php if ($content_bottom): ?>
202 <div id="content-bottom">
203 <?php print $content_bottom; ?>
204 </div><!-- end content-bottom -->
205 <?php endif; ?><!-- endif $content_bottom -->
206
207 </div><!-- end content -->
208
209 <!-- section bottom -->
210 <div id="section-bottom">
211 <?php if ($section_bottom): ?>
212 <?php print $section_bottom; ?>
213 <?php endif; ?><!-- endif $section_bottom -->
214 </div><!-- end section bottom -->
215
216 <div class="clear"></div>
217
218 </div><!-- end main-wrapper -->
219
220 <div id="main-wrapper-bottom"></div>
221
222 <div id="footer-region">
223
224 <!-- feed icons -->
225 <div id="feed-icons">
226 <?php print $feed_icons; ?>
227 </div>
228
229 <!-- footer text -->
230 <div id="credits">
231 <div class="credit-text">Designed by <a href="http://www.davidfugate.com">David Plutado Fugate</a>
232 </div>
233 </div><!-- end footer-text -->
234
235 <!-- footer text -->
236 <div id="footer-text">
237 <?php print $footer_message; ?>
238 </div><!-- end footer-text -->
239
240 </div><!-- end footer-region -->
241
242 <!-- footer ad -->
243 <?php if ($footer_ad): ?>
244 <div id="footer-ad">
245 <?php print $footer_ad; ?>
246 </div>
247 <?php endif; ?>
248
249 </div><!-- end page-wrapper -->
250
251 <?php print $closure ?>
252
253 </body>
254
255 </html>

  ViewVC Help
Powered by ViewVC 1.1.2