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

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

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


Revision 1.4 - (show annotations) (download) (as text)
Mon Jan 26 14:13:39 2009 UTC (10 months ago) by sakib000
Branch: MAIN
CVS Tags: DRUPAL-6--1-3, HEAD
Changes since 1.3: +7 -16 lines
File MIME type: text/x-php
*** empty log message ***
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language; ?>" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>">
3
4 <head>
5 <title><?php print $head_title; ?></title>
6 <?php print $head; ?>
7 <link rel="stylesheet" type="text/css" href="<?php print base_path() . path_to_theme() ?>/master.css"/>
8 <?php print $styles; ?>
9 <?php print $scripts; ?>
10 <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyled Content in IE */ ?> </script>
11 </head>
12 <body class="<?php print $body_classes; ?>" id="mainbody" >
13
14 <div id="container">
15
16 <div id="head">
17
18 <div id="hleft">
19
20 <div id="titles">
21 <?php if ($logo) { ?><div id="logocontainer"><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a></div><?php } ?>
22 <?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
23 <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
24 </div>
25
26 </div>
27
28 <div id="hright">
29
30 <div id="secondary-links">
31 <?php if (isset($secondary_links)) : ?>
32 <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
33 <?php endif; ?>
34
35 </div>
36
37 <div id="header_block">
38 <?php print $header ?>
39 </div>
40
41 </div>
42
43 </div><!--head-->
44
45 <div id="mast">
46
47 <div id="menu">
48 <?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' => 'links', 'id' => 'navlist')) ?><?php } ?>
49 </div>
50
51 <div id="wrap" >
52
53 <div id="postarea">
54 <?php if ($content_top): print $content_top; endif; ?>
55 <div id="postareainner">
56 <?php if ($breadcrumb): print $breadcrumb; endif; ?>
57 <?php if ($tabs): print '<div id="tabs-wrapper" class="clear-block">'; endif; ?>
58 <?php if ($title): print '<div id="h2title"><h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2></div>'; endif; ?>
59
60 <?php if ($tabs): print $tabs .'</div>'; endif; ?>
61 <?php if (isset($tabs2)): print $tabs2; endif; ?>
62 <?php if ($help): print $help; endif; ?>
63 <?php if ($messages): print $messages; endif; ?>
64 <?php print $content ?>
65 </div>
66 <?php if ($content_bottom): print $content_bottom; endif; ?>
67 </div>
68
69 <div id="sidearea">
70 <?php if ($mission): ?>
71 <div id="mission-block">
72
73 <?php print $mission ?>
74 </div>
75 <?php endif; ?>
76
77 <?php if ($search_box): ?><div id="search-block-main"><?php print $search_box ?></div><?php endif; ?>
78
79 <div id="sidebars">
80
81 <?php if ($left): ?>
82 <div id="left">
83 <?php print $left ?>
84 </div>
85 <?php endif;?>
86
87 <?php if ($right): ?>
88 <div id="right">
89 <?php print $right ?>
90 </div>
91 <?php endif;?>
92 <br style="clear:both;" />
93 </div><!--sidebars-->
94
95 </div>
96
97 <br style="clear:both;" />
98 </div>
99
100 </div>
101
102 <div id="footer"><?php if ($footer): ?> <div id="foot-block"><?php print $footer ?> </div><?php endif; ?><?php if ($footer_message): ?> <?php print $footer_message ?> | <?php endif; ?> Powered by <a href="http://www.drupal.com">Drupal</a>, Designed by <a href="http://www.worthapost.com">Worthapost</a> </div>
103
104 </div> <!--container-->
105 <?php print $closure ?>
106 </body>
107 </html>

  ViewVC Help
Powered by ViewVC 1.1.2