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

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

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

revision 1.2 by sakib000, Sat Jan 3 11:26:01 2009 UTC revision 1.3 by sakib000, Sat Jan 3 11:52:29 2009 UTC
# Line 1  Line 1 
1  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">  <!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" xml:lang="<?php print $language->language; ?>" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>">  <html xmlns="http://www.w3.org/1999/xhtml">
3    
4  <head>  <head>
5    <title><?php print $head_title; ?></title>    <title><?php print $head_title; ?></title>
# Line 9  Line 9 
9    <?php print $scripts; ?>    <?php print $scripts; ?>
10    <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyled Content in IE */ ?> </script>    <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyled Content in IE */ ?> </script>
11  </head>  </head>
12  <body class="<?php print $body_classes; ?>" id="mainbody" >  <body
13    
14    <?php
15    if ($is_front)
16      echo "class='front'";
17    else
18      echo "class='not-front'";
19    ?>
20    
21     id="mainbody" >
22    
23  <div id="container">  <div id="container">
24    
# Line 78  Line 87 
87    
88  <div id="sidebars">  <div id="sidebars">
89    
90  <?php if ($left): ?>  <?php if ($sidebar_left): ?>
91  <div id="left">  <div id="left">
92  <?php print $left ?>  <?php print $sidebar_left ?>
93  </div>  </div>
94  <?php endif;?>  <?php endif;?>
95    
96  <?php if ($right): ?>  <?php if ($sidebar_right): ?>
97  <div id="right">  <div id="right">
98  <?php print $right ?>  <?php print $sidebar_right ?>
99  </div>  </div>
100  <?php endif;?>  <?php endif;?>
101  <br style="clear:both;" />  <br style="clear:both;" />

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

  ViewVC Help
Powered by ViewVC 1.1.3