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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Sat Feb 10 00:19:39 2007 UTC (2 years, 9 months ago) by s7en
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-php
First upload/version of ActiveSigns
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
7 print $head;
8 print theme('stylesheet_import', base_path() . path_to_theme() ."/modules.css");
9 print theme('stylesheet_import', base_path() . path_to_theme() ."/nav.css");
10 print theme('stylesheet_import', base_path() . path_to_theme() ."/layout.css");
11 print $styles;
12 ?>
13 <!--[if lte IE 6]>
14 <style type="text/css" media="screen">
15 /* IE min-width trick */
16 div#wrapper1 {
17 width:expression(((document.compatMode && document.compatMode=='CSS1Compat') ? document.documentElement.clientWidth : document.body.clientWidth) < 720 ? "720px" : "auto");
18 }
19 </style>
20 <![endif]-->
21 </head>
22 <body <?php print theme("onload_attribute"); ?>>
23 <div class="hide">
24 <a href="#content" title="Skip the site navigation to go directly to the content">Skip to content</a>
25 </div>
26 <!-- closes #header-->
27 <!-- START: HEADER -->
28
29 <div id="wrapper1">
30 <div id="wrapper2">
31 <div class="header" id="header">
32 <div class="headerpadding">
33 <?php if ($logo) : ?>
34 <div id="site-name"><a href="<?php print $base_path ?>" title="Home"><img
35 src="<?php print $logo ?>" alt="<?php print $site_name ?> Logo" /></a></div>
36 <?php endif; ?>
37
38
39 <span id="site-name-shadow">[<a href="<?php print $base_path ?>"><?php print $site_name ?></a>]</span>
40 <!--span id="site-name-shadow">[<?php print $site_name ?>]</span-->
41 <?php if ($site_slogan) : ?>
42 <div id="site-slogan"><span><?php print($site_slogan) ?></span></div>
43 <?php endif;?>
44
45 <div id ="region_header"><?php print $header ?></div>
46
47 <?php if (module_exist('banner')) : ?>
48 <div id="banner"><?php print banner_display() ?></div>
49 <?php endif; ?>
50
51 <?php if ($primary_links) : ?>
52 <ul id="primary">
53 <?php foreach (array_reverse($primary_links) as $link): ?>
54 <li><?php print $link; ?></li>
55 <?php endforeach; ?>
56 </ul>
57
58 <?php elseif ($secondary_links) : ?>
59 <ul id="secondary">
60 <?php foreach (array_reverse($secondary_links) as $link): ?>
61 <li><?php print $link; ?></li>
62 <?php endforeach; ?>
63 </ul>
64 <?php endif; ?>
65
66 <?php if ($search_box) : ?>
67 <?php print $search_box ?>
68 <?php endif; ?>
69
70 </div>
71 </div>
72 <!-- END: HEADER-->
73 <hr class="hide" />
74 <div class="columns">
75 <?php if ($sidebar_left != '') { ?>
76 <div class="leftcolumn sidebar" id="sidebar-left">
77 <div class="leftpadding">
78 <?php print $sidebar_left; ?>
79 </div>
80 </div>
81 <?php } ?>
82 <?php if ($sidebar_right != '') { ?>
83 <div class="rightcolumn sidebar" id="sidebar-right">
84 <div class="rightpadding">
85 <?php print $sidebar_right; ?>
86 </div>
87 </div>
88 <?php } ?>
89 <hr class="hide" />
90 <div class="centercolumn">
91 <div class="centerpadding">
92 <div class="main-content" id="main">
93 <?php if (($_GET['q']) != variable_get('site_frontpage','node')): ?>
94
95 <?php if ($breadcrumb != ""): ?>
96 <div id="breadcrumbs">
97 <?php print $breadcrumb;?> <span class="breadcrumb"> &raquo; <?php if ($title != ""): print ucwords($title); endif; ?></span>
98 </div>
99 <?php endif; ?>
100 <?php endif; ?>
101 <?php if ($mission != ""): ?>
102 <div id="mission"><span id="mission-text"><?php print $mission ?></span></div>
103 <?php endif; ?>
104 <?php if ($title != ""): ?>
105 <h1 id="title"><?php print $title ?></h1>
106 <?php endif; ?>
107 <?php if ($messages != ""): ?>
108 <div id="message"><?php print $messages ?></div>
109 <?php endif; ?>
110 <?php if ($help != ""): ?>
111 <div id="help"><?php print $help ?></div>
112 <?php endif; ?>
113 <?php if ($tabs != ""): ?>
114 <?php print $tabs ?>
115 <?php endif; ?>
116
117 <!-- start main content -->
118 <span style="width: 100%;"><a name="content"></a></span>
119 <?php print($content) ?>
120 <!-- end main content -->
121 </div><!-- main -->
122 </div>
123 </div>
124 </div>
125 <div class="clearing"></div>
126 <hr class="hide" />
127 <!-- START: FOOTER-->
128 <div id="footer" class="footer"><p>
129 <?php if ($footer_message) : ?>
130 <?php print $footer_message;?>
131 <?php endif; ?> </p><br/><p>Designed by <a href="http://www.signfuse.com">SignFuse - Sign Language Media</a></p>
132 <?php print $closure;?>
133 </div>
134 <!-- END: FOOTER -->
135 </div><!-- wrapper -->
136 </div><!-- outer_wrapper -->
137 </body>
138 </html>
139

  ViewVC Help
Powered by ViewVC 1.1.2