-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_sidebar-1.inc.php
46 lines (44 loc) · 1.56 KB
/
_sidebar-1.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?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 pixel
*/
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
?>
<div id="sidebar_left">
<ul>
<?php
// ------------------------- "Sidebar" CONTAINER EMBEDDED HERE --------------------------
// Display container contents:
skin_container( NT_('Sidebar'), 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 class="$wi_class$"><div class="sidebarbox">',
'block_end' => '</div> <!-- end of class="sidebarbox" --></li>',
// This will enclose the title of each widget:
'block_title_start' => '<h2>',
'block_title_end' => '</h2>',
// 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>',
// 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="sidebar_left" -->