Advertisement
Guest User

Untitled

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