~quam-plures-core/quam-plures/bug-614012

« back to all changes in this revision

Viewing changes to templates/intense/_sidebar.inc.php

  • Committer: yabs
  • Author(s): EdB
  • Date: 2010-07-05 15:24:36 UTC
  • mfrom: (7501.1.4 everything_in_one)
  • Revision ID: yabs@innervisions.org.uk-20100705152436-zdfylg1djrbsi18o
Implementing the huge EdB branch ;)

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 * @subpackage intense
16
16
 */
17
17
if( !defined('QP_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
18
 
?>
19
 
<div id="sidebar">
20
 
<ul>
21
 
<?php
 
18
 
22
19
// --- --- --- --- --- --- --- --- --- --- ---
23
20
// display "Sidebar" container's contents
24
21
template_container( NT_('Sidebar'), array(
 
22
        'container_start' => '<div id="sidebar"><ul>',
 
23
        'container_end' => '</ul></div>',
25
24
        'block_start' => '<li class="$wi_class$">',
26
25
        'block_end' => '</li>',
27
26
        'block_title_start' => '<h2>',
28
27
        'block_title_end' => '</h2>',
29
 
        'list_start' => '<ul>',
30
 
        'list_end' => '</ul>',
31
 
        'item_start' => '<li>',
32
 
        'item_end' => '</li>',
33
 
        'group_start' => '<ul>',
34
 
        'group_end' => '</ul>',
35
 
        'notes_start' => '<div class="notes">',
36
 
        'notes_end' => '</div>',
37
28
) );
38
29
?>
39
 
</ul>
40
 
</div>