/b2evolution/firebug/_body_header.inc.php
http://laibcomsthemes.googlecode.com/ · PHP · 96 lines · 63 code · 11 blank · 22 comment · 2 complexity · d01f09e513dc5851eba903623709e5e2 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 firebug
- */
- 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 class="floatright">
- <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="topsearch">
- <form action="<?php $Blog->gen_blogurl() ?>" method="get" id="searchform" class="search">
- <input type="text" value="" name="s" id="s" class="swap_value" />
- <input type="image" src="rsc/img/go.gif" id="go" alt="Search" title="Search" />
- </form>
- </div> <!-- end of id="topsearch" -->
- </div> <!-- end of class="floatright" -->
- <div class="clear"></div>
-
- </div> <!-- end of id="header" -->
-
- <div id="nav">
- <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 -----------------------------
- ?>
-
- <li class="date">
- <?php
- $format = $Skin->get_setting('date_format');
- if (empty ($format))
- {
- $format = locale_datefmt();
- }
- echo(mysql2date($format, date("Y-m-d h:i:s",time())));
- //$format = locale_datefmt();
- ?>
- <!--<script src="rsc/js/date.js"></script>--></li>
- </ul>
- </div> <!-- end of id="nav" -->