-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_sidebar_right.inc.php
38 lines (32 loc) · 1.38 KB
/
_sidebar_right.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
<?php
/**
* This is the SIDEBAR include template.
*
* 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.' );
// By default, this does nothing. It's just here to simplify the includes of different sidebars, minimizing edits.
?>
<div id="sidebars">
<?php
// ------------------------- SIDEBAR INCLUDED HERE --------------------------
skin_include( '_sidebar-w-1.inc.php' );
// Note: You can customize the default BODY footer by copying the
// _body_footer.inc.php file into the current skin folder.
// ----------------------------- END OF SIDEBAR -----------------------------
// ------------------------- SIDEBAR INCLUDED HERE --------------------------
skin_include( '_sidebar-1.inc.php' );
// Note: You can customize the default BODY footer by copying the
// _body_footer.inc.php file into the current skin folder.
// ----------------------------- END OF SIDEBAR -----------------------------
// ------------------------- SIDEBAR INCLUDED HERE --------------------------
skin_include( '_sidebar-2.inc.php' );
// Note: You can customize the default BODY footer by copying the
// _body_footer.inc.php file into the current skin folder.
// ----------------------------- END OF SIDEBAR -----------------------------
?>
<div class="cleared"></div>
</div> <!-- end of id="sidebars" -->