Seditio Source
Root |
./othercms/b2evolution_7.2.3/skins/jared_skin/single.main.php
<?php
/**
 * This is the main/default page template for the "bootstrap_blog" skin.
 *
 * This skin only uses one single template which includes most of its features.
 * It will also rely on default includes for specific dispays (like the comment form).
 *
 * For a quick explanation of b2evo 2.0 skins, please start here:
 * {@link http://b2evolution.net/man/skin-development-primer}
 *
 * The main page template is used to display the blog when no specific page template is available
 * to handle the request (based on $disp).
 *
 * @package evoskins
 * @subpackage bootstrap_blog
 */
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );

if(
evo_version_compare( $app_version, '6.4' ) < 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 6.4 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', array(
   
'body_class' => 'pictured',
) );
// -------------------------------- END OF HEADER --------------------------------


// ---------------------------- SITE HEADER INCLUDED HERE ----------------------------
// If site headers are enabled, they will be included here:
skin_include( '_body_header.inc.php' );
// ------------------------------- END OF SITE HEADER --------------------------------
?>

<?php
if( $Item->get_cover_image_url() )
{
    echo
'<div class="evo_container__single_page_cover" style="background-image:url('. $Item->get_cover_image_url() .')">';
} else {

   
$single_bg_sec_6 = '';
   
// Check if image is uploaded
   
if( $Skin->get_setting( 'section_6_image_file_ID' ) )
    {
       
// Get image...
       
$bg_image_File6 = & $FileCache->get_by_ID( $Skin->get_setting( 'section_6_image_file_ID' ), false, false );
        if( !empty(
$bg_image_File6 ) && $bg_image_File6->exists() )
        {
           
// Store everything needed for parallax
           
$single_bg_sec_6 = 'style="background-image:url('. $bg_image_File6->get_url() .')"';
        }
    }

    echo
'<div class="evo_container__standalone_page_area_6 parallax-window" '. $single_bg_sec_6 .'>';
}
?>


<div class="container">

<header class="row">

        <?php
           
// ------------------------- "Page Top" CONTAINER EMBEDDED HERE --------------------------
            // Display container and contents:
           
widget_container( 'page_top', array(
                   
// The following params will be used as defaults for widgets included in this container:
                   
'container_display_if_empty' => true, // Display container anyway even if no widget
                   
'container_start'     => '<div class="coll-xs-12 coll-sm-12 col-md-4 col-md-push-8"><div class="evo_container $wico_class$">',
                   
'container_end'       => '</div></div>',
                   
'block_start'         => '<div class="evo_widget $wi_class$">',
                   
'block_end'           => '</div>',
                   
'block_display_title' => false,
                   
'list_start'          => '<ul>',
                   
'list_end'            => '</ul>',
                   
'item_start'          => '<li>',
                   
'item_end'            => '</li>',
                   
// Widget 'Search form':
                   
'search_input_before'  => '<div class="input-group">',
                   
'search_input_after'   => '',
                   
'search_submit_before' => '<span class="input-group-btn">',
                   
'search_submit_after'  => '</span></div>',
                ) );
           
// ----------------------------- END OF "Page Top" CONTAINER -----------------------------
       
?>

    <div class="evo_post_title col-md-12">
        <h1><?php $Item->title(); // PAGE TITLE ?></h1>
    </div>

</header><!-- .row -->

</div><!-- .container -->

</div><!-- .evo_container__standalone_page_area_6 -->

<div class="container main_page_wrapper_other_disps">

<div class="row">

    <div class="col-md-12">

        <main><!-- This is were a link like "Jump to main content" would land -->

        <!-- ================================= START OF MAIN AREA ================================== -->

        <?php
       
if( ! in_array( $disp, array( 'login', 'lostpassword', 'register', 'activateinfo', 'access_requires_login' ) ) )
        {    
// Don't display the messages here because they are displayed inside wrapper to have the same width as form
            // ------------------------- MESSAGES GENERATED FROM ACTIONS -------------------------
           
messages( array(
                   
'block_start' => '<div class="action_messages">',
                   
'block_end'   => '</div>',
                ) );
           
// --------------------------------- END OF MESSAGES ---------------------------------
       
}
       
?>

        <?php
           
// ------------------------ TITLE FOR THE CURRENT REQUEST ------------------------
           
request_title( array(
                   
'title_before'      => '<h2>',
                   
'title_after'       => '</h2>',
                   
'title_none'        => '',
                   
'glue'              => ' - ',
                   
'title_single_disp' => false,
                   
'title_page_disp'   => false,
                   
'format'            => 'htmlbody',
                ) );
           
// ----------------------------- END OF REQUEST TITLE ----------------------------
       
?>

        <?php
       
// Go Grab the featured post:
       
if( ! in_array( $disp, array( 'single', 'page' ) ) && $Item = & get_featured_Item() )
        {    
// We have a featured/intro post to display:
            // Use background position image of intro-post for background URL:
           
$background_image_url = $Item->get_cover_image_url( 'background' );
           
$intro_item_style = $background_image_url ? 'background-image: url("'.$background_image_url.'")' : '';
           
// ---------------------- ITEM BLOCK INCLUDED HERE ------------------------
           
skin_include( '_item_block.inc.php', array(
                   
'feature_block' => true,
                   
'content_mode'  => 'full', // We want regular "full" content, even in category browsing: i-e no excerpt or thumbnail
                   
'intro_mode'    => 'normal',    // Intro posts will be displayed in normal mode
                   
'item_class'    => ($Item->is_intro() ? 'well evo_intro_post' : 'well evo_featured_post').( empty( $intro_item_style ) ? '' : ' evo_hasbgimg' ),
                   
'item_style'    => $intro_item_style,
                   
'Item'          => $Item,
                ) );
           
// ----------------------------END ITEM BLOCK  ----------------------------
       
}
       
?>

        <?php
           
// -------------- MAIN CONTENT TEMPLATE INCLUDED HERE (Based on $disp) --------------
           
skin_include( '$disp$', array(
                   
'author_link_text' => 'auto',
                   
// Profile tabs to switch between user edit forms
                   
'profile_tabs' => array(
                       
'block_start'         => '<nav><ul class="nav nav-tabs profile_tabs">',
                       
'item_start'          => '<li>',
                       
'item_end'            => '</li>',
                       
'item_selected_start' => '<li class="active">',
                       
'item_selected_end'   => '</li>',
                       
'block_end'           => '</ul></nav>',
                    ),
                   
// Pagination
                   
'pagination' => array(
                       
'block_start'           => '<div class="center"><ul class="pagination">',
                       
'block_end'             => '</ul></div>',
                       
'page_current_template' => '<span>$page_num$</span>',
                       
'page_item_before'      => '<li>',
                       
'page_item_after'       => '</li>',
                       
'page_item_current_before' => '<li class="active">',
                       
'page_item_current_after'  => '</li>',
                       
'prev_text'             => '<i class="fa fa-angle-double-left"></i>',
                       
'next_text'             => '<i class="fa fa-angle-double-right"></i>',
                    ),
                   
// Item content:
                   
'url_link_position'     => 'top',
                   
// Form params for the forms below: login, register, lostpassword, activateinfo and msgform
                   
'skin_form_before'      => '<div class="panel panel-default skin-form">'
                                                                               
.'<div class="panel-heading">'
                                                                                   
.'<h3 class="panel-title">$form_title$</h3>'
                                                                               
.'</div>'
                                                                               
.'<div class="panel-body">',
                   
'skin_form_after'       => '</div></div>',
                   
// Login
                   
'display_form_messages' => true,
                   
'form_title_login'      => T_('Log in to your account').'$form_links$',
                   
'form_title_lostpass'   => get_request_title().'$form_links$',
                   
'lostpass_page_class'   => 'evo_panel__lostpass',
                   
'login_form_inskin'     => false,
                   
'login_page_class'      => 'evo_panel__login',
                   
'login_page_before'     => '<div class="$form_class$">',
                   
'login_page_after'      => '</div>',
                   
'display_reg_link'      => true,
                   
'abort_link_position'   => 'form_title',
                   
'abort_link_text'       => '<button type="button" class="close" aria-label="Close"><span aria-hidden="true">&times;</span></button>',
                   
// Register
                   
'register_page_before'      => '<div class="evo_panel__register">',
                   
'register_page_after'       => '</div>',
                   
'register_form_title'       => T_('Register'),
                   
'register_links_attrs'      => '',
                   
'register_use_placeholders' => true,
                   
'register_field_width'      => 252,
                   
'register_disabled_page_before' => '<div class="evo_panel__register register-disabled">',
                   
'register_disabled_page_after'  => '</div>',
                   
// Activate form
                   
'activate_form_title'  => T_('Account activation'),
                   
'activate_page_before' => '<div class="evo_panel__activation">',
                   
'activate_page_after'  => '</div>',
                   
// Search
                   
'search_input_before'  => '<div class="input-group">',
                   
'search_input_after'   => '',
                   
'search_submit_before' => '<span class="input-group-btn">',
                   
'search_submit_after'  => '</span></div>',
                   
// Front page
                   
'featured_intro_before' => '<div class="jumbotron">',
                   
'featured_intro_after'  => '</div>',
                   
// Form "Sending a message"
                   
'msgform_form_title' => T_('Sending a message'),
                ) );
           
// 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 ---------------------------
       
?>
       </main>

    </div><!-- .col -->

</div><!-- .row -->

</div><!-- .container -->

<?php
// ---------------------------- SITE FOOTER INCLUDED HERE ----------------------------
// If site footers are enabled, they will be included here:
skin_include( '_body_footer.inc.php' );
// ------------------------------- END OF SITE FOOTER --------------------------------


// ------------------------- HTML FOOTER INCLUDED HERE --------------------------
skin_include( '_html_footer.inc.php' );
// ------------------------------- END OF FOOTER --------------------------------
?>