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

« back to all changes in this revision

Viewing changes to templates/glossyblue/index.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:
28
28
<div id="content">
29
29
<?php
30
30
// messages generated from actions
31
 
messages();
 
31
messages( array() );
32
32
 
33
33
// title for the current request
34
34
request_title( array(
35
35
        'title_before' => '<h2>',
36
36
        'title_after' => '</h2>',
37
 
        'title_none' => '',
38
 
        'glue' => ' - ',
39
 
        'title_single_disp' => true,
40
 
        'format' => 'htmlbody',
41
37
) );
42
38
 
43
39
// --- --- --- --- --- --- --- --- --- --- ---
44
 
// MAIN CONTENT based on $disp INCLUDED HERE
45
 
template_include( '$disp$', array(
46
 
        /**
47
 
         * @todo EdB: the $disp$ thing isn't covered in tutorials and 
48
 
         * I don't know what it does anyway so this is 2 todos in 1 :(
49
 
         */
50
 
) );
 
40
// --- MAIN CONTENT INCLUDED HERE ---
 
41
template_include( '$disp$', array() );
51
42
?>
52
43
</div>
53
44