/b2evolution/firebug/_sidebar_right.inc.php

http://laibcomsthemes.googlecode.com/ · PHP · 38 lines · 11 code · 6 blank · 21 comment · 1 complexity · 49b973826729b54969fd176732559b47 MD5 · raw file

  1. <?php
  2. /**
  3. * This is the SIDEBAR include template.
  4. *
  5. * This is meant to be included in a page template.
  6. *
  7. * @package evoskins
  8. * @subpackage firebug
  9. */
  10. if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
  11. // By default, this does nothing. It's just here to simplify the includes of different sidebars, minimizing edits.
  12. ?>
  13. <div id="sidebar">
  14. <?php
  15. // ------------------------- SIDEBAR INCLUDED HERE --------------------------
  16. skin_include( '_sidebar-w-1.inc.php' );
  17. // Note: You can customize the default BODY footer by copying the
  18. // _body_footer.inc.php file into the current skin folder.
  19. // ----------------------------- END OF SIDEBAR -----------------------------
  20. // ------------------------- SIDEBAR INCLUDED HERE --------------------------
  21. skin_include( '_sidebar-1.inc.php' );
  22. // Note: You can customize the default BODY footer by copying the
  23. // _body_footer.inc.php file into the current skin folder.
  24. // ----------------------------- END OF SIDEBAR -----------------------------
  25. // ------------------------- SIDEBAR INCLUDED HERE --------------------------
  26. skin_include( '_sidebar-2.inc.php' );
  27. // Note: You can customize the default BODY footer by copying the
  28. // _body_footer.inc.php file into the current skin folder.
  29. // ----------------------------- END OF SIDEBAR -----------------------------
  30. ?>
  31. <div class="clear"></div>
  32. </div> <!-- end of id="sidebar" -->