/b2evolution/corporatemag/_sidebar-w-1.inc.php
http://laibcomsthemes.googlecode.com/ · PHP · 53 lines · 27 code · 2 blank · 24 comment · 1 complexity · 7a38bcbbd897607a0df0df91c7f6204a MD5 · raw file
- <?php
- /**
- * This is the sidebar 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="primary">
- <ul>
- <?php
- // ------------------------- "Sidebar" CONTAINER EMBEDDED HERE --------------------------
- // Display container contents:
- skin_container( NT_('Sidebar-w-1'), array(
- // The following (optional) params will be used as defaults for widgets included in this container:
- // This will enclose each widget in a block:
- 'block_start' => '<li id="$wi_ID$" class="widget $wi_class$">',
- 'block_end' => '</li>',
- //
- 'block_display_title' => true,
- // This will enclose the title of each widget:
- 'block_title_start' => '<h4 class="widget-title">',
- 'block_title_end' => '</h4>',
- // This will enclose the content of the widget:
- 'block_content_start' => '<div class="widget-content">',
- 'block_content_end' => '</div> <!-- end of class="widget-content" -->',
- // If a widget displays a list, this will enclose that list:
- 'list_start' => '<ul>',
- 'list_end' => '</ul>',
- // This will enclose each item in a list:
- 'item_start' => '<li>',
- 'item_end' => '</li>',
- //
- 'link_default_class' => 'default',
- // This will enclose sub-lists in a list:
- 'group_start' => '<ul>',
- 'group_end' => '</ul>',
- // This will enclose (foot)notes:
- 'notes_start' => '<div class="notes">',
- 'notes_end' => '</div> <!-- end of class="notes" -->',
- ) );
- // ----------------------------- END OF "Sidebar" CONTAINER -----------------------------
- ?>
- </ul>
-
- </div> <!-- end of id="primary" -->