/b2evolution/pixel/_body_header.inc.php

http://laibcomsthemes.googlecode.com/ · PHP · 79 lines · 48 code · 10 blank · 21 comment · 1 complexity · 6351463029efc775a9464b39cb3abffe 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 pixel
  12. */
  13. if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
  14. ?>
  15. <div id="wrapper">
  16. <div id="header">
  17. <div id="logo">
  18. <?php
  19. // ------------------------- "Header" CONTAINER EMBEDDED HERE --------------------------
  20. // Display container and contents:
  21. skin_container( NT_('Header'), array(
  22. // The following params will be used as defaults for widgets included in this container:
  23. 'block_start' => '<span class="$wi_class$">',
  24. 'block_end' => '</span>',
  25. 'block_title_start' => '<h1>',
  26. 'block_title_end' => '</h1>',
  27. ) );
  28. // ----------------------------- END OF "Header" CONTAINER -----------------------------
  29. ?>
  30. </div> <!-- end of id="logo" -->
  31. <div id="pagetop">
  32. <?php
  33. // Display container and contents:
  34. skin_container( NT_('Page Top'), array(
  35. // The following params will be used as defaults for widgets included in this container:
  36. 'block_start' => '<div class="$wi_class$">',
  37. 'block_end' => '</div>',
  38. 'block_display_title' => false,
  39. 'list_start' => '<ul>',
  40. 'list_end' => '</ul>',
  41. 'item_start' => '<li>',
  42. 'item_end' => '</li>',
  43. ) );
  44. ?>
  45. </div> <!-- end of id="pagetop" -->
  46. </div> <!-- end of id="header" -->
  47. <div id="catnav">
  48. <div id="topfeed">
  49. <a href="<?php $Blog->disp( 'atom_url', 'raw' ) ?>"><img src="rsc/img/feed-trans.png" alt="Blog Name" width="65" height="24" /></a>
  50. </div> <!-- end of id="topfeed" -->
  51. <ul id="nav">
  52. <?php
  53. // ------------------------- "Menu" CONTAINER EMBEDDED HERE --------------------------
  54. // Display container and contents:
  55. skin_container( NT_('Menu'), array(
  56. // The following params will be used as defaults for widgets included in this container:
  57. 'block_start' => '',
  58. 'block_end' => '',
  59. 'block_display_title' => false,
  60. 'list_start' => '',
  61. 'list_end' => '',
  62. 'item_start' => '<li>',
  63. 'item_end' => '</li>',
  64. ) );
  65. // ----------------------------- END OF "Menu" CONTAINER -----------------------------
  66. ?>
  67. </ul>
  68. </div> <!-- end of id="catnav" -->
  69. <div class="cleared"></div>