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

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

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


Revision 1.1 - (show annotations) (download) (as text)
Tue Jan 16 01:17:33 2007 UTC (2 years, 10 months ago) by alaa
Branch: MAIN
CVS Tags: DRUPAL-4-7--1-0, HEAD
Branch point for: DRUPAL-4-7
File MIME type: text/x-php
initial commit of RTL theme ports
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 print $search_box ?>
13 <?php if ($logo) : ?>
14 <a href="<?php print url() ?>" title="Index Page"><img src="<?php print($logo) ?>" alt="Logo" /></a>
15 <?php endif; ?>
16 <?php if ($site_name) : ?>
17 <h1 id="site-name"><a href="<?php print url() ?>" title="Index Page"><?php print($site_name) ?></a></h1>
18 <?php endif;?>
19 <?php if ($site_slogan) : ?>
20 <span id="site-slogan"><?php print($site_slogan) ?></span>
21 <?php endif;?>
22 <br class="clear" />
23 <?php print $header ?>
24 </div>
25 <div id="top-nav">
26 <?php if (count($secondary_links)) : ?>
27 <ul id="secondary">
28 <?php foreach ($secondary_links as $link): ?>
29 <li>&nbsp;<?php print $link?>&nbsp;</li>
30 <?php endforeach; ?>
31 </ul>
32 <?php endif; ?>
33 <?php if (count($primary_links)) : ?>
34 <ul id="primary">
35 <?php foreach ($primary_links as $link): ?>
36 <li>&nbsp;<?php print $link?>&nbsp;</li>
37 <?php endforeach; ?>
38 </ul>
39 <?php endif; ?>
40 </div>
41 <table id="content">
42 <tr>
43 <?php if ($sidebar_right != ""): ?>
44 <td class="sidebar" id="sidebar-right">
45 <?php print $sidebar_right ?>
46 </td>
47 <?php endif; ?>
48 <td class="main-content" id="content-<?php print $layout ?>">
49 <?php if ($title != ""): ?>
50 <h2 class="content-title"><?php print $title ?></h2>
51 <?php endif; ?>
52 <?php if ($tabs != ""): ?>
53 <?php print $tabs ?>
54 <?php endif; ?>
55
56 <?php if ($mission != ""): ?>
57 <div id="mission"><?php print $mission ?></div>
58 <?php endif; ?>
59
60 <?php if ($help != ""): ?>
61 <p id="help"><?php print $help ?></p>
62 <?php endif; ?>
63
64 <?php if ($messages != ""): ?>
65 <div id="message"><?php print $messages ?></div>
66 <?php endif; ?>
67
68 <!-- start main content -->
69 <?php print($content) ?>
70 <!-- end main content -->
71 </td><!-- mainContent -->
72 <?php if ($sidebar_left != ""): ?>
73 <td class="sidebar" id="sidebar-left">
74 <?php print $sidebar_left ?>
75 </td>
76 <?php endif; ?>
77 </tr>
78 </table>
79 <div id="footer">
80 <?php if ($footer_message) : ?>
81 <p><?php print $footer_message;?></p>
82 <?php endif; ?>
83 </div><!-- footer -->
84
85 <?php print $closure;?>
86 </body>
87 </html>
88

  ViewVC Help
Powered by ViewVC 1.1.2