/[drupal]/contributions/themes/MyDrupal-Tidy/page.tpl.php
ViewVC logotype

Contents of /contributions/themes/MyDrupal-Tidy/page.tpl.php

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


Revision 1.1 - (show annotations) (download) (as text)
Fri Jun 1 14:56:01 2007 UTC (2 years, 5 months ago) by taherk
Branch: MAIN
CVS Tags: DRUPAL-5--1-0, HEAD
Branch point for: DRUPAL-5
File MIME type: text/x-php
*** empty log message ***
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
3 <head>
4 <meta http-equiv="Content-Style-Type" content="text/css" />
5 <title><?php print $head_title ?></title>
6 <?php print $head ?>
7 <?php print $styles ?>
8 <?php print $scripts ?>
9 </head>
10
11 <body>
12 <div class="wrapper">
13 <div class="container">
14 <div id="secondary_nav">
15 <?php print theme('links', $secondary_links, array('class' => 'links', 'id' => 'subnavlist')) ?>
16 </div>
17
18 <div class="logo">
19 <?php if ($logo) : ?>
20 <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print($logo) ?>" alt="<?php print t('Home') ?>" border="0" width="140" height="98" /></a>
21 <?php endif; ?>
22 </div>
23 <div id="title">
24 <h1>
25 <?php if ($site_name) : ?>
26 <a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print($site_name) ?></a>
27 <?php endif;?>
28 </h1>
29 <h2>
30 <?php if ($site_slogan) : ?><?php print($site_slogan) ?>
31 <?php endif;?>
32 </h2>
33 <div id="searchbar">
34 <?php print $search_box ?>
35 </div>
36 </div>
37
38 <div id="navigation">
39 <?php print theme('links', $primary_links, array('class' => 'links', 'id' => 'navlist')) ?>
40 </div>
41 <?php print $header ?>
42 <br class="clear" />
43 <div id="body">
44 <div class="sidebar">
45 <div class="content">
46 <div class="links">
47 <?php if ($sidebar_left != ""): ?>
48 <?php print $sidebar_left ?>
49 <?php endif; ?>
50 </div>
51 </div>
52 <br />
53 <br />
54
55 <br class="clear" />
56 </div>
57
58 <div class="content">
59 <?php if ($mission != ""): ?>
60 <div id="mission"><?php print $mission ?></div>
61 <?php endif; ?>
62 <?php if ($title != ""): ?>
63 <?php print $breadcrumb ?>
64 <h1 class="title"><?php print $title ?></h1>
65
66 <?php if ($tabs != ""): ?>
67 <div class="tabs"><?php print $tabs ?></div>
68 <?php endif; ?>
69
70 <?php endif; ?>
71
72 <?php if ($help != ""): ?>
73 <div id="help"><?php print $help ?></div>
74 <?php endif; ?>
75
76 <?php if ($messages != ""): ?>
77 <?php print $messages ?>
78 <?php endif; ?>
79
80 <!-- start main content -->
81 <?php print $content; ?>
82 <?php print $feed_icons; ?>
83 <!-- end main content -->
84
85
86 <br class="clear" />
87 </div>
88 <br class="clear" />
89 </div>
90 <br class="clear" />
91 <div id="footer">
92 <?php if ($footer_message) : ?>
93 <?php print $footer_message;?>
94 <?php endif; ?>
95 <div class="clear"></div>
96 <div id="copyright">
97 <div class="container">
98 Theme By: <a href="http://mydrupal.com">My Drupal</a>. Sponsored by: <a href="http://itdiscover.com">IT Discover</a> | <a href="http://techjobs.co.in">Tech Jobs</a> | <a href="http://csqa.info">CSQA</a>
99 </div>
100 </div>
101 </div>
102 </div>
103 </div>
104
105 <?php print $closure;?>
106 </body>
107 </html>

  ViewVC Help
Powered by ViewVC 1.1.2