/b2evolution/corporatemag/_sidebar_right.inc.php

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