~edb/quam-plures/item_show_attachments

« back to all changes in this revision

Viewing changes to blogs/templates/glossyblue/page.main.php

  • Committer: EdB
  • Date: 2009-12-31 09:41:57 UTC
  • mto: This revision was merged to the branch mainline in revision 7396.
  • Revision ID: b2evo.plugins@gmail.com-20091231094157-v3v6fujd3rlw37vf
the commit message

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
14
14
 
15
15
if( version_compare( $app_version, '2.4.1' ) < 0 )
16
 
{ // Older 2.x skins work on newer 2.x b2evo versions, but newer 2.x skins may not work on older 2.x b2evo versions.
17
 
        die( 'This skin is designed for b2evolution 2.4.1 and above. Please <a href="http://b2evolution.net/downloads/index.html">upgrade your b2evolution</a>.' );
 
16
{ // Older 2.x templates work on newer 2.x b2evo versions, but newer 2.x templates may not work on older 2.x b2evo versions.
 
17
        die( 'This template is designed for b2evolution 2.4.1 and above. Please <a href="http://b2evolution.net/downloads/index.html">upgrade your b2evolution</a>.' );
18
18
}
19
19
 
20
20
// This is the main template; it may be used to display very different things.
21
21
// Do inits depending on current $disp:
22
 
skin_init( $disp );
23
 
 
24
 
 
25
 
skin_include( '_html_header.inc.php' );
 
22
template_init( $disp );
 
23
 
 
24
 
 
25
template_include( '_html_header.inc.php' );
26
26
// Note: You can customize the default HTML header by copying the generic
27
 
// /templates/_html_header.inc.php file into the current skin folder.
 
27
// /templates/_html_header.inc.php file into the current template folder.
28
28
// -------------------------------- END OF HEADER --------------------------------
29
29
?>
30
30
 
31
31
 
32
32
<?php
33
33
// ------------------------- BODY HEADER INCLUDED HERE --------------------------
34
 
skin_include( '_body_header.inc.php' );
 
34
template_include( '_body_header.inc.php' );
35
35
// Note: You can customize the default BODY heder by copying the generic
36
 
// /templates/_body_footer.inc.php file into the current skin folder.
 
36
// /templates/_body_footer.inc.php file into the current template folder.
37
37
// ------------------------------- END OF FOOTER --------------------------------
38
38
?>
39
39
 
70
70
 
71
71
                <?php
72
72
                        // ---------------------- POST CONTENT INCLUDED HERE ----------------------
73
 
                        skin_include( '_item_content.inc.php', array(
 
73
                        template_include( '_item_content.inc.php', array(
74
74
                                        'image_size'    =>      'fit-400x320',
75
75
                                ) );
76
76
                        // Note: You can customize the default item feedback by copying the generic
77
 
                        // /templates/_item_feedback.inc.php file into the current skin folder.
 
77
                        // /templates/_item_feedback.inc.php file into the current template folder.
78
78
                        // -------------------------- END OF POST CONTENT -------------------------
79
79
                ?>
80
80
 
97
97
</div>
98
98
<?php
99
99
// ------------------------- SIDEBAR INCLUDED HERE --------------------------
100
 
skin_include( '_sidebar.inc.php' );
 
100
template_include( '_sidebar.inc.php' );
101
101
// Note: You can customize the default BODY footer by copying the
102
 
// _body_footer.inc.php file into the current skin folder.
 
102
// _body_footer.inc.php file into the current template folder.
103
103
// ----------------------------- END OF SIDEBAR -----------------------------
104
104
?>
105
105
 
106
106
<?php
107
107
// ------------------------- BODY FOOTER INCLUDED HERE --------------------------
108
 
skin_include( '_body_footer.inc.php' );
 
108
template_include( '_body_footer.inc.php' );
109
109
// Note: You can customize the default BODY footer by copying the
110
 
// _body_footer.inc.php file into the current skin folder.
 
110
// _body_footer.inc.php file into the current template folder.
111
111
// ------------------------------- END OF FOOTER --------------------------------
112
112
?>
113
113
 
114
114
 
115
115
<?php
116
116
// ------------------------- HTML FOOTER INCLUDED HERE --------------------------
117
 
skin_include( '_html_footer.inc.php' );
 
117
template_include( '_html_footer.inc.php' );
118
118
// Note: You can customize the default HTML footer by copying the
119
 
// _html_footer.inc.php file into the current skin folder.
 
119
// _html_footer.inc.php file into the current template folder.
120
120
// ------------------------------- END OF FOOTER --------------------------------
121
121
?>