/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
- <?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 pixel
- */
- if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
-
- ?>
-
- <div id="wrapper">
-
- <div id="header">
- <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="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> <!-- end of id="header" -->
-
- <div id="catnav">
- <div id="topfeed">
- <a href="<?php $Blog->disp( 'atom_url', 'raw' ) ?>"><img src="rsc/img/feed-trans.png" alt="Blog Name" width="65" height="24" /></a>
-
- </div> <!-- end of id="topfeed" -->
- <ul id="nav">
- <?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="catnav" -->
-
- <div class="cleared"></div>