<?php
/**
* This is the template that displays the item block: title, author, content (sub-template), tags, comments (sub-template)
*
* This file is not meant to be called directly.
* It is meant to be called by an include in the main.page.php template (or other templates)
*
* b2evolution - {@link http://b2evolution.net/}
* Released under GNU GPL License - {@link http://b2evolution.net/about/gnu-gpl-license}
* @copyright (c)2003-2020 by Francois Planque - {@link http://fplanque.com/}
*
* @package evoskins
*/
if( !defined('EVO_MAIN_INIT') ) die( 'Please, do not access this page directly.' );
global $Item, $Skin, $app_version;
// Default params:
$params = array_merge( array(
'feature_block' => false, // fp>yura: what is this for??
// Classes for the <article> tag:
'item_class' => 'evo_post evo_content_block',
'item_type_class' => 'evo_post__ptyp_',
'item_status_class' => 'evo_post__',
// Controlling the title:
'disp_title' => true,
'item_title_line_before' => '<div class="evo_post_title">', // Note: we use an extra class because it facilitates styling
'item_title_before' => '<h2>',
'item_title_after' => '</h2>',
'item_title_single_before' => '<h1>', // This replaces the above in case of disp=single or disp=page
'item_title_single_after' => '</h1>',
'item_title_line_after' => '</div>',
// Controlling the content:
'content_mode' => 'auto', // excerpt|full|normal|auto -- auto will auto select depending on $disp-detail
'image_class' => 'img-responsive',
'image_size' => get_skin_setting( 'main_content_image_size', 'fit-1280x720' ),
'author_link_text' => 'auto',
), $params );
?>
<div class="evo_content_block">
<article id="<?php $Item->anchor_id() ?>" class="<?php $Item->div_classes( $params ) ?>" lang="<?php $Item->lang() ?>">
<?php
$Item->locale_temp_switch(); // Temporarily switch to post locale (useful for multilingual blogs)
// Display images that are linked to this post:
$Item->images( array(
'before_images' => '<div class="evo_post_images">',
'before_image' => '<figure class="evo_image_block">',
'before_image_legend' => '<figcaption class="evo_image_legend">',
'after_image_legend' => '</figcaption>',
'after_image' => '</figure>',
'after_images' => '</div>',
'image_class' => 'img-responsive',
'image_size' => get_skin_setting( 'main_content_image_size', 'fit-1280x720' ),
'image_limit' => 1000,
'image_link_to' => 'original', // Can be 'original', 'single' or empty
'before_gallery' => '<div class="evo_post_gallery">',
'after_gallery' => '</div>',
'gallery_table_start' => '',
'gallery_table_end' => '',
'gallery_row_start' => '',
'gallery_row_end' => '',
'gallery_cell_start' => '<div class="evo_post_gallery__image">',
'gallery_cell_end' => '</div>',
'gallery_image_size' => 'crop-80x80',
'gallery_image_limit' => 1000,
'gallery_colls' => 5,
'gallery_order' => '', // Can be 'ASC', 'DESC', 'RAND' or empty
// Optionally restrict to files/images linked to specific position: 'teaser'|'teaserperm'|'teaserlink'|'aftermore'|'inline'|'cover'|'background'
'restrict_to_image_position' => 'teaser',
) );
?>
<div class="evo_post_wrapper <?php if(!$Item->is_intro()){echo 'well';} ?>">
<header>
<?php
// ------- Title -------
if( $params['disp_title'] )
{
echo $params['item_title_line_before'];
if( $disp == 'single' || $disp == 'page' )
{
$title_before = $params['item_title_single_before'];
$title_after = $params['item_title_single_after'];
}
else
{
$title_before = $params['item_title_before'];
$title_after = $params['item_title_after'];
}
// POST TITLE:
$Item->title( array(
'before' => $title_before,
'after' => $title_after,
'link_type' => '#'
) );
// EDIT LINK:
if( $Item->is_intro() )
{ // Display edit link only for intro posts, because for all other posts the link is displayed on the info line.
$Item->edit_link( array(
'before' => '<div class="'.button_class( 'group' ).'">',
'after' => '</div>',
'text' => $Item->is_intro() ? get_icon( 'edit' ).' '.T_('Edit Intro') : '#',
'class' => button_class( 'text' ),
) );
}
echo $params['item_title_line_after'];
}
if( ! $Item->is_intro() )
{ // Don't display the following for intro posts
echo '<div class="small text-muted">';
if( $Item->status != 'published' )
{
$Item->format_status( array(
'template' => '<div class="evo_status evo_status__$status$ badge pull-right" data-toggle="tooltip" data-placement="top" title="$tooltip_title$">$status_title$</div>',
) );
}
// Permalink:
$Item->permanent_link( array(
'text' => '#icon#',
) );
// We want to display the post time:
$Item->issue_time( array(
'before' => ' '.T_('posted on '),
'after' => ' ',
'time_format' => locale_extdatefmt(),
) );
// Author
$Item->author( array(
'before' => /* TRANS: author name */ ' '.T_('by').' ',
'after' => ' ',
'link_text' => $params['author_link_text'],
) );
// Categories
$Item->categories( array(
'before' => /* TRANS: category name(s) */ T_('in').' ',
'after' => ' ',
'include_main' => true,
'include_other' => true,
'include_external'=> true,
'link_categories' => true,
) );
// Link for editing
$Item->edit_link( array(
'before' => ' • ',
'after' => '',
) );
echo '</div>';
}
?>
</header>
<?php
if( $disp == 'single' )
{
// ------------------------- "Item Single" CONTAINER EMBEDDED HERE --------------------------
// Display container contents:
widget_container( 'item_single', array(
'widget_context' => 'item', // Signal that we are displaying within an Item
// The following (optional) params will be used as defaults for widgets included in this container:
'container_display_if_empty' => false, // If no widget, don't display container at all
// This will enclose each widget in a block:
'block_start' => '<div class="evo_widget $wi_class$">',
'block_end' => '</div>',
// This will enclose the title of each widget:
'block_title_start' => '<h3>',
'block_title_end' => '</h3>',
// Template params for "Item Link" widget
'widget_item_link_before' => '<p class="evo_post_link">',
'widget_item_link_after' => '</p>',
// Template params for "Item Tags" widget
'widget_item_tags_before' => '<nav class="small post_tags">',
'widget_item_tags_after' => '</nav>',
'widget_item_tags_separator' => ' ',
// Params for skin file "_item_content.inc.php"
'widget_item_content_params' => $params,
// Template params for "Item Attachments" widget:
'widget_item_attachments_params' => array(
'limit_attach' => 1000,
'before' => '<div class="evo_post_attachments"><h3>'.T_('Attachments').':</h3><ul class="evo_files">',
'after' => '</ul></div>',
'before_attach' => '<li class="evo_file">',
'after_attach' => '</li>',
'before_attach_size' => ' <span class="evo_file_size">(',
'after_attach_size' => ')</span>',
),
) );
// ----------------------------- END OF "Item Single" CONTAINER -----------------------------
}
elseif( $disp == 'page' )
{
// ------------------------- "Item Page" CONTAINER EMBEDDED HERE --------------------------
// Display container contents:
widget_container( 'item_page', array(
'widget_context' => 'item', // Signal that we are displaying within an Item
// The following (optional) params will be used as defaults for widgets included in this container:
'container_display_if_empty' => false, // If no widget, don't display container at all
// This will enclose each widget in a block:
'block_start' => '<div class="evo_widget $wi_class$">',
'block_end' => '</div>',
// This will enclose the title of each widget:
'block_title_start' => '<h3>',
'block_title_end' => '</h3>',
// Params for skin file "_item_content.inc.php"
'widget_item_content_params' => $params,
// Template params for "Item Attachments" widget:
'widget_item_attachments_params' => array(
'limit_attach' => 1000,
'before' => '<div class="evo_post_attachments"><h3>'.T_('Attachments').':</h3><ul class="evo_files">',
'after' => '</ul></div>',
'before_attach' => '<li class="evo_file">',
'after_attach' => '</li>',
'before_attach_size' => ' <span class="evo_file_size">(',
'after_attach_size' => ')</span>',
),
) );
// ----------------------------- END OF "Item Page" CONTAINER -----------------------------
}
else
{
// this will create a <section>
// ---------------------- POST CONTENT INCLUDED HERE ----------------------
skin_include( '_item_content.inc.php', $params );
// Note: You can customize the default item content by copying the generic
// /skins/_item_content.inc.php file into the current skin folder.
// -------------------------- END OF POST CONTENT -------------------------
// this will end a </section>
}
?>
</div> <!-- ../content_end_full_text -->
<?php
if( ! $Item->is_intro() && $disp == 'posts' ) // Do NOT apply tags, comments and feedback on intro posts
{ // List all tags attached to this post:
?>
<footer>
<nav>
<?php
// Link to comments, trackbacks, etc.:
$Item->feedback_link( array(
'type' => 'comments',
'link_before' => '',
'link_after' => '',
'link_text_zero' => '#',
'link_text_one' => '#',
'link_text_more' => '#',
'link_title' => '#',
// fp> WARNING: creates problem on home page: 'link_class' => 'btn btn-default btn-sm',
// But why do we even have a comment link on the home page ? (only when logged in)
) );
// Link to comments, trackbacks, etc.:
$Item->feedback_link( array(
'type' => 'trackbacks',
'link_before' => ' • ',
'link_after' => '',
'link_text_zero' => '#',
'link_text_one' => '#',
'link_text_more' => '#',
'link_title' => '#',
) );
?>
</nav>
</footer>
<?php
} ?>
<?php
if( is_single_page() )
{ // Display comments only on single Item's page:
// ------------------ FEEDBACK (COMMENTS/TRACKBACKS) INCLUDED HERE ------------------
skin_include( '_item_feedback.inc.php', array_merge( array(
'disp_comments' => true,
'disp_comment_form' => true,
'disp_trackbacks' => true,
'disp_trackback_url' => true,
'disp_pingbacks' => true,
'disp_webmentions' => true,
'disp_meta_comments' => false,
'before_section_title' => '<div class="clearfix"></div><h3 class="evo_comment__list_title">',
'after_section_title' => '</h3>',
), $params ) );
// Note: You can customize the default item feedback by copying the generic
// /skins/_item_feedback.inc.php file into the current skin folder.
// ---------------------- END OF FEEDBACK (COMMENTS/TRACKBACKS) ---------------------
}
?>
<?php
if( evo_version_compare( $app_version, '6.7' ) >= 0 )
{ // We are running at least b2evo 6.7, so we can include this file:
// ------------------ INTERNAL COMMENTS INCLUDED HERE ------------------
skin_include( '_item_meta_comments.inc.php', array(
'comment_start' => '<article class="evo_comment evo_comment__meta panel panel-default">',
'comment_end' => '</article>',
) );
// ---------------------- END OF INTERNAL COMMENTS ---------------------
}
?>
<?php
locale_restore_previous(); // Restore previous locale (Blog locale)
?>
</article>
</div><!-- ../evo_content_block -->