0byt3m1n1
Path:
/
data
/
applications
/
aps
/
b2evolution
/
4.1.5b-1
/
standard
/
htdocs
/
skins
/
asevo
/
[
Home
]
File: index.main.php
<?php /** * This is the main/default page template. * * For a quick explanation of b2evo 2.0 skins, please start here: * {@link http://manual.b2evolution.net/Skins_2.0} * * It is used to display the blog when no specific page template is available to handle the request. * * @package evoskins * @subpackage asevo * * @version $Id: index.main.php 9 2011-10-24 22:32:00Z fplanque $ */ if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' ); if( version_compare( $app_version, '3.0' ) < 0 ) { // Older skins (versions 2.x and above) should work on newer b2evo versions, but newer skins may not work on older b2evo versions. die( 'This skin is designed for b2evolution 3.0 and above. Please <a href="http://b2evolution.net/downloads/index.html">upgrade your b2evolution</a>.' ); } // This is the main template; it may be used to display very different things. // Do inits depending on current $disp: skin_init( $disp ); // -------------------------- HTML HEADER INCLUDED HERE -------------------------- skin_include( '_html_header.inc.php' ); // Note: You can customize the default HTML header by copying the // _html_header.inc.php file into the current skin folder. // -------------------------------- END OF HEADER -------------------------------- ?> <div class="head_zone"> <div class="inner_wrapper"> <div class="PageTop"> <?php // Display container and contents: skin_container( NT_('Page Top'), array( // The following params will be used as defaults for widgets included in this container: 'block_start' => '<div class="$wi_class$">', 'block_end' => '</div>', 'block_display_title' => false, 'list_start' => '<ul>', 'list_end' => '</ul>', 'item_start' => '<li>', 'item_end' => '</li>', ) ); ?> </div> </div> </div> <div class="nav_zone"> <div class="inner_wrapper"> <div class="top_menu"> <ul> <?php // ------------------------- "Menu" CONTAINER EMBEDDED HERE -------------------------- // Display container and contents: // Note: this container is designed to be a single <ul> list skin_container( NT_('Menu'), array( // The following params will be used as defaults for widgets included in this container: 'block_start' => '', 'block_end' => '', 'block_display_title' => false, 'list_start' => '', 'list_end' => '', 'item_start' => '<li>', 'item_end' => '</li>', ) ); // ----------------------------- END OF "Menu" CONTAINER ----------------------------- ?> </ul> </div> </div> </div> <div class="main_zone"> <div class="inner_wrapper"> <div class="evo_title_area"> <?php // Display container and contents: skin_container( NT_('Header'), array( // The following params will be used as defaults for widgets included in this container: 'block_start' => '<div class="$wi_class$">', 'block_end' => '</div>', 'block_title_start' => '<h2>', 'block_title_end' => '</h2>', ) ); ?> </div> <div class="evo_main_area"> <?php // ------------------------- MESSAGES GENERATED FROM ACTIONS ------------------------- messages( array( 'block_start' => '<div class="action_messages">', 'block_end' => '</div>', ) ); // --------------------------------- END OF MESSAGES --------------------------------- ?> <?php // ------------------- PREV/NEXT POST LINKS (SINGLE POST MODE) ------------------- item_prevnext_links( array( 'block_start' => '<table class="prevnext_post"><tr>', 'prev_start' => '<td>', 'prev_end' => '</td>', 'next_start' => '<td class="right">', 'next_end' => '</td>', 'block_end' => '</tr></table>', ) ); // ------------------------- END OF PREV/NEXT POST LINKS ------------------------- ?> <?php // ------------------------- TITLE FOR THE CURRENT REQUEST ------------------------- request_title( array( 'title_before'=> '<h2 class="evo_req_title">', 'title_after' => '</h2>', 'title_none' => '', 'glue' => ' - ', 'title_single_disp' => false, 'format' => 'htmlbody', ) ); // ------------------------------ END OF REQUEST TITLE ----------------------------- ?> <!-- =================================== START OF MAIN AREA =================================== --> <?php // ------------------------------------ START OF POSTS ---------------------------------------- // Go Grab the featured post: if( $Item = & get_featured_Item() ) { // We have a featured/intro post to display: // ---------------------- ITEM BLOCK INCLUDED HERE ------------------------ skin_include( '_item_block.inc.php', array( 'feature_block' => true, 'content_mode' => 'auto', // 'auto' will auto select depending on $disp-detail 'intro_mode' => 'normal', // Intro posts will be displayed in normal mode 'item_class' => 'featured_post', 'image_size' => 'fit-400x320', ) ); // ----------------------------END ITEM BLOCK ---------------------------- } // Display message if no post: display_if_empty(); while( $Item = & mainlist_get_item() ) { // For each blog post: // ---------------------- ITEM BLOCK INCLUDED HERE ------------------------ skin_include( '_item_block.inc.php', array( 'content_mode' => 'auto', // 'auto' will auto select depending on $disp-detail 'image_size' => 'fit-400x320', ) ); // ----------------------------END ITEM BLOCK ---------------------------- } ?> <?php // -------------------- PREV/NEXT PAGE LINKS (POST LIST MODE) -------------------- mainlist_page_links( array( 'block_start' => '<p class="center"><strong>', 'block_end' => '</strong></p>', 'links_format' => '$prev$ :: $next$', 'prev_text' => '<< '.T_('Previous'), 'next_text' => T_('Next').' >>', ) ); // ------------------------- END OF PREV/NEXT PAGE LINKS ------------------------- ?> <?php // -------------- MAIN CONTENT TEMPLATE INCLUDED HERE (Based on $disp) -------------- skin_include( '$disp$', array( 'disp_posts' => '', // We already handled this case above 'disp_single' => '', // We already handled this case above 'disp_page' => '', // We already handled this case above ) ); // Note: you can customize any of the sub templates included here by // copying the matching php file into your skin directory. // ------------------------- END OF MAIN CONTENT TEMPLATE --------------------------- ?> </div> <!-- =================================== START OF SIDEBAR =================================== --> <div class="evo_sidebar"> <?php // Display container contents: skin_container( NT_('Sidebar'), array( // The following (optional) params will be used as defaults for widgets included in this container: // This will enclose each widget in a block: 'block_start' => '<div class="evo_side_item $wi_class$">', 'block_end' => '</div>', // This will enclose the title of each widget: 'block_title_start' => '<h3>', 'block_title_end' => '</h3>', // If a widget displays a list, this will enclose that list: 'list_start' => '<ul>', 'list_end' => '</ul>', // This will enclose each item in a list: 'item_start' => '<li>', 'item_end' => '</li>', // This will enclose sub-lists in a list: 'group_start' => '<ul>', 'group_end' => '</ul>', ) ); ?> <?php // Please help us promote b2evolution and leave this logo on your blog: powered_by( array( 'block_start' => '<div class="powered_by">', 'block_end' => '</div>', // Check /rsc/img/ for other possible images -- Don't forget to change or remove width & height too 'img_url' => '$rsc$img/powered-by-b2evolution-120t.gif', 'img_width' => 120, 'img_height' => 32, ) ); ?> </div> <div class="clear"><img src="<?php echo $rsc_url; ?>img/blank.gif" width="1" height="1" alt="" /></div> </div> </div> <?php // ------------------------- BODY FOOTER INCLUDED HERE -------------------------- skin_include( '_body_footer.inc.php' ); // Note: You can customize the default BODY footer by copying the // _body_footer.inc.php file into the current skin folder. // ------------------------------- END OF FOOTER -------------------------------- ?> <?php // ------------------------- HTML FOOTER INCLUDED HERE -------------------------- skin_include( '_html_footer.inc.php' ); // Note: You can customize the default HTML footer by copying the // _html_footer.inc.php file into the current skin folder. // ------------------------------- END OF FOOTER -------------------------------- ?>