Advertisement
Guest User

Untitled

a guest
Sep 17th, 2014
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <div id="page">
  2. <header id="header" role="banner">
  3. <div id="page2">
  4. <?php if ($logo): ?>
  5. <a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home" id="logo"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" /></a>
  6. <?php endif; ?>
  7. <?php if ($site_name || $site_slogan): ?>
  8. <hgroup id="name-and-slogan">
  9. <?php if ($site_name): ?>
  10. <h1 id="site-name">
  11. <a href="<?php print $front_page; ?>" title="<?php print t('Home'); ?>" rel="home"><span><?php print $site_name; ?></span></a>
  12. </h1>
  13. <?php endif; ?>
  14.  
  15. <?php if ($site_slogan): ?>
  16. <h2 id="site-slogan"><?php print $site_slogan; ?></h2>
  17. <?php endif; ?>
  18. </hgroup><!-- /#name-and-slogan -->
  19. <?php endif; ?>
  20. <?php print render($page['header']); ?>
  21. </div>
  22. </header>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement