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

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

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


Revision 1.4 - (show annotations) (download) (as text)
Wed Mar 30 01:22:12 2005 UTC (4 years, 7 months ago) by kbahey
Branch: MAIN
CVS Tags: DRUPAL-4-5, HEAD
Branch point for: DRUPAL-4-6
Changes since 1.3: +1 -9 lines
File MIME type: text/x-php
Fixed as per TDobes comments here http://drupal.org/node/19555
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html lang="<?php print $language ?>" xml:lang="<?php print $language ?>" xmlns="http://www.w3.org/1999/xhtml">
4 <head>
5 <title><?php print $head_title ?></title>
6 <?php print $head ?>
7 <style type="text/css" media="screen">
8 <!--
9 @import url(<?php print path_to_theme()."/layout.css"; ?>);
10 @import url(<?php print path_to_theme()."/modules.css"; ?>);
11 // -->
12 </style>
13 <?php print $styles ?>
14 <!--[if lte IE 6]>
15 <style type="text/css" media="screen">
16 <!--
17 /* IE min-width trick */
18 div#wrapper1 {
19 width:expression(((document.compatMode && document.compatMode=='CSS1Compat') ? document.documentElement.clientWidth : document.body.clientWidth) < 720 ? "720px" : "auto");
20 }
21 // -->
22 </style>
23 <![endif]-->
24 </head>
25
26 <body <?php print theme("onload_attribute"); ?>>
27 <div class="hide">
28 <?php if ($site_slogan) : ?>
29 <div id="site-slogan"><span><?php print($site_slogan) ?></span></div>
30 <?php endif;?>
31 <a href="#content" title="Skip the site navigation to go directly to the content">Skip to content</a>
32 </div>
33 <!-- closes #header-->
34 <!-- START: HEADER
35 |||||||||||||||||||||||||||||||||||||||||||||||||||||||| -->
36 <div id="wrapper1">
37 <div id="wrapper2">
38 <div class="header" id="header">
39 <div class="headerpadding">
40 <?php if ($logo) : ?>
41 <div id="site-name"><a href="<?php print url() ?>" title="Home"><img
42 src="<?php print $logo ?>" alt="<?php print $site_name ?> Logo" /></a></div>
43 <?php endif; ?>
44
45 <?php if (module_exist('banner')) : ?>
46 <div id="banner"><?php print banner_display() ?></div>
47 <?php endif; ?>
48
49 <?php if ($primary_links) : ?>
50 <ul id="primary">
51 <?php foreach (array_reverse($primary_links) as $link): ?>
52 <li><?php print $link; ?></li>
53 <?php endforeach; ?>
54 </ul>
55
56 <?php elseif ($secondary_links) : ?>
57 <ul id="secondary">
58 <?php foreach (array_reverse($secondary_links) as $link): ?>
59 <li><?php print $link; ?></li>
60 <?php endforeach; ?>
61 </ul>
62 <?php endif; ?>
63 <?php if ($search_box) { ?>
64 <form action="<?php print $search_url; ?>" method="post" id="search">
65 <div><input class="form-text" type="text" size="15" value="" name="edit[keys]" id="keys" />
66 <input class="form-submit" type="submit" id="submit" value="Search" /></div>
67 </form>
68 <?php } ?>
69
70 </div>
71 </div>
72 <!-- END: HEADER
73 |||||||||||||||||||||||||||||||||||||||||||||||||||||||| -->
74
75 <hr class="hide" />
76
77 <div class="columns">
78 <div class="leftcolumn sidebar" id="sidebar-left">
79 <div class="leftpadding">
80 <?php if ($sidebar_left != '') { ?>
81 <div class="sidebar" id="sidebar-left">
82 <?php print $sidebar_left; ?>
83 </div>
84 <?php } ?>
85 </div>
86 </div>
87 <div class="rightcolumn sidebar" id="sidebar-right">
88 <div class="rightpadding">
89 <?php if ($sidebar_right != '') { ?>
90 <div class="sidebar" id="sidebar-right">
91 <?php print $sidebar_right; ?>
92 </div>
93 <?php } ?>
94 </div>
95 </div>
96 <div class="centercolumn">
97 <div class="centerpadding">
98
99 <div class="main-content" id="main">
100 <?php if ($breadcrumb != ""): ?>
101 <div id="breadcrumbs">
102 <?php print $breadcrumb ?>
103 </div>
104 <?php endif; ?>
105 <?php if ($mission != ""): ?>
106 <div id="mission"><span><?php print $mission ?></span></div>
107 <?php endif; ?>
108 <?php if ($page_title != ""): ?>
109 <h1 id="title"><?php print $page_title ?></h1>
110 <?php endif; ?>
111 <?php if ($message != ""): ?>
112 <div id="message"><?php print $message ?></div>
113 <?php endif; ?>
114 <?php if ($help != ""): ?>
115 <p id="help"><?php print $help ?></p>
116 <?php endif; ?>
117
118 <!-- start main content -->
119 <?php print($content) ?>
120 <!-- end main content -->
121
122
123 </div><!-- main -->
124
125 </div>
126 </div>
127 </div>
128
129 <div class="clearing"></div>
130
131 <hr class="hide" />
132
133 <!-- START: FOOTER
134 |||||||||||||||||||||||||||||||||||||||||||||||||||||||| -->
135 <div id="footer" class="footer">
136 <?php if ($footer_message) : ?>
137 <p><?php print $footer_message;?></p>
138 <?php endif; ?>
139 <?php print $closure;?>
140 </div>
141 <!-- END: FOOTER
142 |||||||||||||||||||||||||||||||||||||||||||||||||||||||| -->
143
144 </div><!-- wrapper -->
145 </div><!-- outer_wrapper -->
146
147
148 </body>
149 </html>
150

  ViewVC Help
Powered by ViewVC 1.1.2