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

« back to all changes in this revision

Viewing changes to templates/glossyblue/posts.main.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:
29
29
<div id="content">
30
30
<?php
31
31
// messages generated from actions
32
 
messages();
 
32
messages( array() );
33
33
 
34
34
// title for the current request
35
35
request_title( array(
36
36
        'title_before' => '<h2>',
37
37
        'title_after' => '</h2>',
38
 
        'title_none' => '',
39
 
        'glue' => ' - ',
40
 
        'title_single_disp' => true,
41
 
        'format' => 'htmlbody',
42
38
) );
43
39
 
44
40
// do we have a featured/intro item to display?
56
52
}
57
53
 
58
54
// display a message if list is empty
59
 
display_if_empty();
 
55
display_if_empty( array() );
60
56
 
61
57
// loop through as long as we have an Item...
62
58
while( $Item = & mainlist_get_item() )
73
69
mainlist_page_links( array(
74
70
        'block_start' => '<div class="navigation">',
75
71
        'block_end' => '</div>',
76
 
        'prev_text' => '&lt;&lt;',
77
 
        'next_text' => '&gt;&gt;',
78
72
) );
79
73
?>
80
74
</div>