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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Wed Dec 28 20:49:24 2005 UTC (3 years, 11 months ago) by kbahey
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-4-6
File MIME type: text/x-php
Bidirectional theme for Drupal.
On behalf of Ayman Hourieh.
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" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
4 <head>
5 <title><?php print $head_title ?></title>
6 <meta http-equiv="Content-Style-Type" content="text/css" />
7 <?php print $head ?>
8 <?php print $styles ?>
9 </head>
10 <body <?php print theme("onload_attribute"); ?>>
11 <div id="header">
12 <?php if ($search_box): ?>
13 <form action="<?php print $search_url ?>" method="post">
14 <div id="search">
15 <input class="form-text" type="text" size="15" value="" name="edit[keys]" /><input class="form-submit" type="submit" value="<?php print $search_button_text ?>" />
16 </div>
17 </form>
18 <?php endif; ?>
19 <?php if ($logo) : ?>
20 <a href="<?php print url() ?>" title="Index Page"><img src="<?php print($logo) ?>" alt="Logo" /></a>
21 <?php endif; ?>
22 <?php if ($site_name) : ?>
23 <h1 id="site-name"><a href="<?php print url() ?>" title="Index Page"><?php print($site_name) ?></a></h1>
24 <?php endif;?>
25 <?php if ($site_slogan) : ?>
26 <span id="site-slogan"><?php print($site_slogan) ?></span>
27 <?php endif;?>
28 <br class="clear" />
29 </div>
30 <div id="top-nav">
31 <?php if (count($secondary_links)) : ?>
32 <ul id="secondary">
33 <?php foreach ($secondary_links as $link): ?>
34 <li><?php print $link?></li>
35 <?php endforeach; ?>
36 </ul>
37 <?php endif; ?>
38
39 <?php if (count($primary_links)) : ?>
40 <ul id="primary">
41 <?php foreach ($primary_links as $link): ?>
42 <li><?php print $link?></li>
43 <?php endforeach; ?>
44 </ul>
45 <?php endif; ?>
46 </div>
47 <table id="content">
48 <tr>
49 <?php if ($sidebar_left != ""): ?>
50 <td class="sidebar" id="sidebar-left">
51 <?php print $sidebar_left ?>
52 </td>
53 <?php endif; ?>
54 <td class="main-content" id="content-<?php print $layout ?>">
55 <?php if ($title != ""): ?>
56 <h2 class="content-title"><?php print $title ?></h2>
57 <?php endif; ?>
58 <?php if ($tabs != ""): ?>
59 <?php print $tabs ?>
60 <?php endif; ?>
61
62 <?php if ($mission != ""): ?>
63 <div id="mission"><?php print $mission ?></div>
64 <?php endif; ?>
65
66 <?php if ($help != ""): ?>
67 <p id="help"><?php print $help ?></p>
68 <?php endif; ?>
69
70 <?php if ($messages != ""): ?>
71 <div id="message"><?php print $messages ?></div>
72 <?php endif; ?>
73
74 <!-- start main content -->
75 <?php print($content) ?>
76 <!-- end main content -->
77 </td><!-- mainContent -->
78 <?php if ($sidebar_right != ""): ?>
79 <td class="sidebar" id="sidebar-right">
80 <?php print $sidebar_right ?>
81 </td>
82 <?php endif; ?>
83 </tr>
84 </table>
85 <?php print $breadcrumb ?>
86 <div id="footer">
87 <?php if ($footer_message) : ?>
88 <p><?php print $footer_message;?></p>
89 <?php endif; ?>
90 Validate <a href="http://validator.w3.org/check/referer">XHTML</a> or <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a>.
91 </div><!-- footer -->
92 <?php print $closure;?>
93 </body>
94 </html>
95

  ViewVC Help
Powered by ViewVC 1.1.2