/b2evolution/nonzero/_body_header.inc.php
http://laibcomsthemes.googlecode.com/ · PHP · 72 lines · 46 code · 5 blank · 21 comment · 1 complexity · 9f0d7929105be888c58d442b455d2189 MD5 · raw file
- <?php
- /**
- * This is the BODY header include template.
- *
- * For a quick explanation of b2evo 2.0 skins, please start here:
- * {@link http://manual.b2evolution.net/Skins_2.0}
- *
- * This is meant to be included in a page template.
- *
- * @package evoskins
- * @subpackage nonzero
- */
- if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
- ?>
- <div id="outer">
- <div id="header" onclick="location.href='<?php $Blog->disp('url') ?>';" style="cursor: pointer;">
- <div id="header_inner" class="widthstyle">
- <div id="pagetop">
- <?php
- // Display container and contents:
- skin_container( NT_('Page Top'), array(
- // The following params will be used as defaults for widgets included in this container:
- 'block_start' => '<div class="$wi_class$">',
- 'block_end' => '</div>',
- 'block_display_title' => false,
- 'list_start' => '<ul>',
- 'list_end' => '</ul>',
- 'item_start' => '<li>',
- 'item_end' => '</li>',
- ) );
- ?>
- </div> <!-- end of id="pagetop" -->
- <div id="logo">
- <?php
- // ------------------------- "Header" CONTAINER EMBEDDED HERE --------------------------
- // Display container and contents:
- skin_container( NT_('Header'), array(
- // The following params will be used as defaults for widgets included in this container:
- 'block_start' => '<span class="$wi_class$">',
- 'block_end' => '</span>',
- 'block_title_start' => '<h1>',
- 'block_title_end' => '</h1>',
- ) );
- // ----------------------------- END OF "Header" CONTAINER -----------------------------
- ?>
- </div> <!-- end of id="logo" -->
- <div id="menu">
- <ul>
- <?php
- // ------------------------- "Menu" CONTAINER EMBEDDED HERE --------------------------
- // Display container and contents:
- skin_container( NT_('Menu'), array(
- // The following params will be used as defaults for widgets included in this container:
- 'block_start' => '',
- 'block_end' => '',
- 'block_display_title' => false,
- 'list_start' => '',
- 'list_end' => '',
- 'item_start' => '<li>',
- 'item_end' => '</li>',
- ) );
- // ----------------------------- END OF "Menu" CONTAINER -----------------------------
- ?>
- </ul>
- </div> <!-- end of id="menu" -->
- </div> <!-- end of id="header_inner" -->
- </div> <!-- end of id="header" -->