Advertisement
Guest User

Untitled

a guest
Sep 27th, 2013
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.98 KB | None | 0 0
  1. <?php
  2. // $Id: page.tpl.php,v 1.48 2010/11/20 04:03:51 webchick Exp $
  3. ?>
  4.   <?php print render($page['header']); ?>
  5.  
  6.  <div id="logo-floater">
  7.         <?php if ($logo || $site_title): ?>
  8.           <?php if ($title): ?>
  9.             <div id="branding"><strong><a href="<?php print $front_page ?>">
  10.             <?php if ($logo): ?>
  11.               <img src="<?php print $logo ?>" alt="<?php print $site_name_and_slogan ?>" title="<?php print $site_name_and_slogan ?>" id="logo" />
  12.             <?php endif; ?>
  13.             <?php print $site_html ?>
  14.             </a></strong></div>
  15.           <?php else: /* Use h1 when the content title is empty */ ?>
  16.             <h1 id="branding"><a href="<?php print $front_page ?>">
  17.             <?php if ($logo): ?>
  18.               <img src="<?php print $logo ?>" alt="<?php print $site_name_and_slogan ?>" title="<?php print $site_name_and_slogan ?>" id="logo" />
  19.             <?php endif; ?>
  20.             <?php print $site_html ?>
  21.             </a></h1>
  22.         <?php endif; ?>
  23.         <?php endif; ?>
  24.         </div>
  25.  
  26.  
  27.   <div id="wrapper">
  28.     <div id="container" class="clearfix">
  29.  
  30.       <div id="header">
  31.        
  32.  
  33.         <?php if ($primary_nav): print $primary_nav; endif; ?>
  34.         <?php if ($secondary_nav): print $secondary_nav; endif; ?>
  35.       </div> <!-- /#header -->
  36.  
  37.       <?php if ($page['sidebar_first']): ?>
  38.         <div id="sidebar-first" class="sidebar">
  39.           <?php print render($page['sidebar_first']); ?>
  40.         </div>
  41.       <?php endif; ?>
  42.  
  43.       <div id="center"><div id="squeeze"><div class="right-corner"><div class="left-corner">
  44.           <?php print $breadcrumb; ?>
  45.           <?php if ($page['highlighted']): ?><div id="highlighted"><?php print render($page['highlighted']); ?></div><?php endif; ?>
  46.           <a id="main-content"></a>
  47.           <?php if ($tabs): ?><div id="tabs-wrapper" class="clearfix"><?php endif; ?>
  48.           <?php print render($title_prefix); ?>
  49.           <?php if ($title): ?>
  50.             <h1<?php print $tabs ? ' class="with-tabs"' : '' ?>><?php print $title ?></h1>
  51.           <?php endif; ?>
  52.           <?php print render($title_suffix); ?>
  53.           <?php if ($tabs): ?><?php print render($tabs); ?></div><?php endif; ?>
  54.           <?php print render($tabs2); ?>
  55.           <?php print $messages; ?>
  56.           <?php print render($page['help']); ?>
  57.           <?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
  58.           <div class="clearfix">
  59.             <?php print render($page['content']); ?>
  60.           </div>
  61.           <?php print $feed_icons ?>
  62.           <?php print render($page['footer']); ?>
  63.       </div></div></div></div> <!-- /.left-corner, /.right-corner, /#squeeze, /#center -->
  64.  
  65.       <?php if ($page['sidebar_second']): ?>
  66.         <div id="sidebar-second" class="sidebar">
  67.           <?php print render($page['sidebar_second']); ?>
  68.         </div>
  69.       <?php endif; ?>
  70.  
  71.     </div> <!-- /#container -->
  72.   </div> <!-- /#wrapper -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement