/b2evolution/corporatemag/_body_header.inc.php

http://laibcomsthemes.googlecode.com/ · PHP · 52 lines · 33 code · 4 blank · 15 comment · 1 complexity · f8ec04ab0b54f29b3c3ca89c1f81aa8d MD5 · raw file

  1. <?php
  2. /**
  3. * This is the BODY header include template.
  4. *
  5. * For a quick explanation of b2evo 2.0 skins, please start here:
  6. * {@link http://manual.b2evolution.net/Skins_2.0}
  7. *
  8. * This is meant to be included in a page template.
  9. *
  10. * @package evoskins
  11. * @subpackage corporatemag
  12. */
  13. if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
  14. ?>
  15. <div id="body-in">
  16. <div id="wrapper">
  17. <div id="header">
  18. <div id="header-content">
  19. <div id="branding">
  20. <span id="blog-title"><a href="<?php $Blog->disp('url') ?>"><?php $Blog->name(); ?></a></span>
  21. <h1 id="blog-description"><?php $Blog->tagline(); ?></h1>
  22. </div><!-- end of id="branding" -->
  23. <form id="top-search" action="<?php $Blog->gen_blogurl() ?>" method="get" class="search">
  24. <input type="text" id="s" name="s" value="Enter keywords...." class="input-text"/>
  25. <input type="submit" value="" class="input-submit"/>
  26. </form>
  27. <div class="clear"></div>
  28. </div><!-- end of id="header-content" -->
  29. <div class="menu">
  30. <ul class="lavaLampWithImage">
  31. <?php
  32. // ------------------------- "Menu" CONTAINER EMBEDDED HERE --------------------------
  33. // Display container and contents:
  34. skin_container( NT_('Menu'), array(
  35. // The following params will be used as defaults for widgets included in this container:
  36. 'block_start' => '',
  37. 'block_end' => '',
  38. 'block_display_title' => false,
  39. 'list_start' => '',
  40. 'list_end' => '',
  41. 'item_start' => '<li class="page_item page-item-2">',
  42. 'item_end' => '</li>',
  43. ) );
  44. // ----------------------------- END OF "Menu" CONTAINER -----------------------------
  45. ?>
  46. </ul>
  47. </div> <!-- end of class="menu" -->
  48. </div> <!-- end of id="header" -->