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

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

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


Revision 1.2 - (show annotations) (download) (as text)
Tue May 26 06:29:01 2009 UTC (5 months, 4 weeks ago) by jwolf
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +9 -6 lines
File MIME type: text/x-php
updating MAIN
1 <?php
2 // $Id: page.tpl.php,v 1.1.2.1 2009/05/15 20:45:05 jwolf Exp $
3 ?>
4
5 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
6 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language; ?>" xml:lang="<?php print $language->language; ?>">
7
8 <head>
9 <title><?php print $head_title; ?></title>
10 <?php print $head; ?>
11 <?php print $styles; ?>
12 <!--[if IE 7]>
13 <?php print $ie7_styles; ?>
14 <![endif]-->
15 <!--[if lte IE 6]>
16 <?php print $ie6_styles; ?>
17 <![endif]-->
18 <?php if ($local_styles): ?>
19 <?php print $local_styles; ?>
20 <?php endif; ?>
21 <?php print $scripts; ?>
22 </head>
23
24 <body class="<?php print $body_classes; ?>">
25 <div id="page">
26 <?php if ($content): ?>
27 <div id="skip">
28 <a href="#main-content"><?php print t('Skip to Main Content'); ?></a>
29 </div>
30 <?php endif; ?>
31 <?php if ($banner): ?>
32 <div id="banner" class="clearfix">
33 <?php print $banner; ?>
34 </div><!-- /banner -->
35 <?php endif; ?>
36 <?php if ($header_top): ?>
37 <div id="header-top" class="clearfix">
38 <?php print $header_top; ?>
39 </div><!-- /header-top -->
40 <?php endif; ?>
41 <?php if ($primary_links): ?>
42 <div id="primary-menu">
43 <?php print theme('links', $primary_links); ?>
44 </div><!-- /primary_menu -->
45 <?php endif; ?>
46 <div id="header-wrapper" class="clearfix">
47 <div id="header-first">
48 <?php if ($logo): ?>
49 <div id="logo">
50 <a href="<?php print check_url($front_page) ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a>
51 </div>
52 <?php endif; ?>
53 <?php if ($site_name): ?>
54 <h1><a href="<?php print check_url($front_page) ?>" title="<?php print t('Home'); ?>"><?php print $site_name; ?></a></h1>
55 <?php endif; ?>
56 </div><!-- /header-first -->
57 <div id="header-middle">
58 <?php if ($site_slogan): ?>
59 <div id="slogan">
60 <?php print $site_slogan; ?>
61 </div>
62 <?php endif; ?>
63 <?php if ($header_middle): ?>
64 <?php print $header_middle; ?>
65 <?php endif; ?>
66 </div><!-- /header-middle -->
67 <div id="search-box">
68 <?php print $search_box; ?>
69 </div><!-- /search-box -->
70 </div><!-- /header-wrapper -->
71 <div id="main-wrapper" class="clearfix">
72 <?php if ($sidebar_first || $secondary_links): ?>
73 <div id="sidebar-first">
74 <?php if ($secondary_links): ?>
75 <div id="secondary-menu">
76 <?php print theme('links', $secondary_links); ?>
77 </div><!-- /secondary_menu -->
78 <?php endif; ?>
79 <?php if ($sidebar_first): ?>
80 <?php print $sidebar_first; ?>
81 <?php endif; ?>
82 </div><!-- /sidebar-first -->
83 <?php endif; ?>
84 <div id="content-wrapper">
85 <?php if ($messages): ?>
86 <?php print $messages; ?>
87 <?php endif; ?>
88 <?php if ($help): ?>
89 <?php print $help; ?>
90 <?php endif; ?>
91 <?php if ($breadcrumb): ?>
92 <div id="breadcrumb">
93 <?php print $breadcrumb; ?>
94 </div><!-- /breadcrumb -->
95 <?php endif; ?>
96 <?php if ($content_top):?>
97 <div id="content-top" <?php print $banner_image; ?>>
98 <?php print $content_top; ?>
99 </div><!-- /content-top -->
100 <?php endif; ?>
101 <div id="content">
102 <a name="main-content" id="main-content"></a>
103 <?php if ($tabs): ?>
104 <div id="content-tabs" class="clear">
105 <?php print $tabs; ?>
106 </div>
107 <?php endif; ?>
108 <?php if ($content || $title): ?>
109 <div id="content-inner" class="clear">
110 <?php if ($title): ?>
111 <h1 class="title"><?php print $title; ?></h1>
112 <?php endif; ?>
113 <?php if ($content): ?>
114 <?php print $content; ?>
115 <?php endif; ?>
116 </div>
117 <?php endif; ?>
118 <?php if ($content_bottom): ?>
119 <div id="content-bottom">
120 <div class="corner top-right"></div>
121 <div class="corner top-left"></div>
122 <div class="inner">
123 <?php print $content_bottom; ?>
124 </div>
125 <div class="corner bottom-right"></div>
126 <div class="corner bottom-left"></div>
127 </div><!-- /content-bottom -->
128 <?php endif; ?>
129 </div><!-- /content -->
130 </div><!-- /content-wrapper -->
131 <?php if ($sidebar_last): ?>
132 <div id="sidebar-last">
133 <?php print $sidebar_last; ?>
134 </div><!-- /sidebar_last -->
135 <?php endif; ?>
136 </div><!-- /main-wrapper -->
137 </div><!-- /page -->
138 <?php if ($postscript_first || $postscript_middle || $postscript_last): ?>
139 <div id="postscripts">
140 <div id="postscript-wrapper" class="<?php print $postscripts; ?> clearfix">
141 <?php if ($postscript_first): ?>
142 <div id="postscript-first" class="column">
143 <?php print $postscript_first; ?>
144 </div><!-- /postscript-first -->
145 <?php endif; ?>
146 <?php if ($postscript_middle): ?>
147 <div id="postscript-middle" class="column">
148 <?php print $postscript_middle; ?>
149 </div><!-- /postscript-middle -->
150 <?php endif; ?>
151 <?php if ($postscript_last): ?>
152 <div id="postscript-last" class="column">
153 <?php print $postscript_last; ?>
154 </div><!-- /postscript-last -->
155 <?php endif; ?>
156 </div><!-- /postscript-wrapper -->
157 </div><!-- /postscripts -->
158 <?php endif; ?>
159 <?php if ($footer || $footer_message): ?>
160 <div id="footer" class="clearfix">
161 <div id="footer-wrapper">
162 <?php if ($footer_message): ?>
163 <div id="footer-message">
164 <?php print $footer_message; ?>
165 </div>
166 <?php endif; ?>
167 <?php if ($footer) : ?>
168 <div id="footer-region">
169 <?php print $footer; ?>
170 </div>
171 <?php endif; ?>
172 </div><!-- /footer-wrapper -->
173 </div><!-- /footer -->
174 <?php endif; ?>
175 <?php print $closure; ?>
176 </body>
177 </html>

  ViewVC Help
Powered by ViewVC 1.1.2