/b2evolution/emerald/_sidebar_right.inc.php

http://laibcomsthemes.googlecode.com/ · PHP · 43 lines · 13 code · 6 blank · 24 comment · 1 complexity · d33e5ff243ebe13ed0e07366bd83c732 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 emerald
  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. <?php /*
  14. <div id="sidebar">
  15. */ ?>
  16. <?php
  17. // ------------------------- SIDEBAR INCLUDED HERE --------------------------
  18. skin_include( '_sidebar-w-1.inc.php' );
  19. // Note: You can customize the default BODY footer by copying the
  20. // _body_footer.inc.php file into the current skin folder.
  21. // ----------------------------- END OF SIDEBAR -----------------------------
  22. // ------------------------- SIDEBAR INCLUDED HERE --------------------------
  23. skin_include( '_sidebar-1.inc.php' );
  24. // Note: You can customize the default BODY footer by copying the
  25. // _body_footer.inc.php file into the current skin folder.
  26. // ----------------------------- END OF SIDEBAR -----------------------------
  27. // ------------------------- SIDEBAR INCLUDED HERE --------------------------
  28. skin_include( '_sidebar-2.inc.php' );
  29. // Note: You can customize the default BODY footer by copying the
  30. // _body_footer.inc.php file into the current skin folder.
  31. // ----------------------------- END OF SIDEBAR -----------------------------
  32. ?>
  33. <div class="clear"></div>
  34. <?php /*
  35. </div> <!-- end of id="sidebar" -->
  36. <div class="clear"></div>
  37. */ ?>