/b2evolution/pixel/_sidebar_bottom.inc.php

http://laibcomsthemes.googlecode.com/ · PHP · 112 lines · 66 code · 5 blank · 41 comment · 1 complexity · 6ea5d6a6b4892d3d040b34531dbedd70 MD5 · raw file

  1. <?php
  2. /**
  3. * This is the sidebar include template.
  4. *
  5. * For a quick explanation of b2evo 2.0 skins, please start here:
  6. * {@link http://manual.b2evolution.net/Skins_2.0}
  7. *
  8. * This is meant to be included in a page template.
  9. *
  10. * @package evoskins
  11. * @subpackage pixel
  12. */
  13. if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
  14. ?>
  15. <div id="morefoot">
  16. <div class="col1">
  17. <ul>
  18. <?php
  19. // ------------------------- "Sidebar" CONTAINER EMBEDDED HERE --------------------------
  20. // Display container contents:
  21. skin_container( NT_('Sidebar-h 1'), array(
  22. // The following (optional) params will be used as defaults for widgets included in this container:
  23. // This will enclose each widget in a block:
  24. 'block_start' => '<li id="$wi_ID$" class="$wi_class$">',
  25. 'block_end' => '</li>',
  26. // This will enclose the title of each widget:
  27. 'block_title_start' => '<h3>',
  28. 'block_title_end' => '</h3>',
  29. // If a widget displays a list, this will enclose that list:
  30. 'list_start' => '<ul>',
  31. 'list_end' => '</ul>',
  32. // This will enclose each item in a list:
  33. 'item_start' => '<li>',
  34. 'item_end' => '</li>',
  35. // This will enclose sub-lists in a list:
  36. 'group_start' => '<ul>',
  37. 'group_end' => '</ul>',
  38. // This will enclose (foot)notes:
  39. 'notes_start' => '<div class="notes">',
  40. 'notes_end' => '</div> <!-- end of class="notes -->',
  41. ) );
  42. // ----------------------------- END OF "Sidebar" CONTAINER -----------------------------
  43. ?>
  44. </ul>
  45. </div> <!-- end of class="col1" -->
  46. <div class="col2">
  47. <ul>
  48. <?php
  49. // ------------------------- "Sidebar" CONTAINER EMBEDDED HERE --------------------------
  50. // Display container contents:
  51. skin_container( NT_('Sidebar-h 2'), array(
  52. // The following (optional) params will be used as defaults for widgets included in this container:
  53. // This will enclose each widget in a block:
  54. 'block_start' => '<li id="$wi_ID$" class="$wi_class$">',
  55. 'block_end' => '</li>',
  56. // This will enclose the title of each widget:
  57. 'block_title_start' => '<h3>',
  58. 'block_title_end' => '</h3>',
  59. // If a widget displays a list, this will enclose that list:
  60. 'list_start' => '<ul>',
  61. 'list_end' => '</ul>',
  62. // This will enclose each item in a list:
  63. 'item_start' => '<li>',
  64. 'item_end' => '</li>',
  65. // This will enclose sub-lists in a list:
  66. 'group_start' => '<ul>',
  67. 'group_end' => '</ul>',
  68. // This will enclose (foot)notes:
  69. 'notes_start' => '<div class="notes">',
  70. 'notes_end' => '</div> <!-- end of class="notes" -->',
  71. ) );
  72. // ----------------------------- END OF "Sidebar" CONTAINER -----------------------------
  73. ?>
  74. </ul>
  75. </div> <!-- end of class="col2" -->
  76. <div class="col3">
  77. <ul>
  78. <?php
  79. // ------------------------- "Sidebar" CONTAINER EMBEDDED HERE --------------------------
  80. // Display container contents:
  81. skin_container( NT_('Sidebar-h 3'), array(
  82. // The following (optional) params will be used as defaults for widgets included in this container:
  83. // This will enclose each widget in a block:
  84. 'block_start' => '<li id="$wi_ID$" class="$wi_class$">',
  85. 'block_end' => '</li>',
  86. // This will enclose the title of each widget:
  87. 'block_title_start' => '<h3>',
  88. 'block_title_end' => '</h3>',
  89. // If a widget displays a list, this will enclose that list:
  90. 'list_start' => '<ul>',
  91. 'list_end' => '</ul>',
  92. // This will enclose each item in a list:
  93. 'item_start' => '<li>',
  94. 'item_end' => '</li>',
  95. // This will enclose sub-lists in a list:
  96. 'group_start' => '<ul>',
  97. 'group_end' => '</ul>',
  98. // This will enclose (foot)notes:
  99. 'notes_start' => '<div class="notes">',
  100. 'notes_end' => '</div> <!-- end of class="notes" -->',
  101. ) );
  102. // ----------------------------- END OF "Sidebar" CONTAINER -----------------------------
  103. ?>
  104. </ul>
  105. </div> <!-- end of class="col3" -->
  106. <div class="cleared"></div>
  107. </div> <!-- end of id="morefoot" -->