| Linux webm010.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 Path : /home/cuisinesj/www/new/wp-content/themes/customizr/templates/parts/modules/grid/ |
| Current File : /home/cuisinesj/www/new/wp-content/themes/customizr/templates/parts/modules/grid/grid_item.php |
<?php
/**
* The template for displaying the post list grid item (expanded or not)
*
* In WP loop
*
* @package Customizr
* @since Customizr 3.5.0
*/
?>
<article <?php czr_fn_echo( 'article_selectors' ) ?> <?php czr_fn_echo('element_attributes') ?>>
<section class="grid__item">
<div class="tc-grid-figure entry-media__holder <?php czr_fn_echo( 'figure_class' ) ?>">
<div class="entry-media__wrapper czr__r-i">
<a class="bg-link" href="<?php the_permalink() ?>"></a>
<?php czr_fn_echo( 'thumb_img' ) ?>
</div>
<div class="tc-grid-caption">
<div class="entry-summary <?php czr_fn_echo('entry_summary_class') ?>">
<?php
/* The expanded grid item has the title inside the caption */
if( czr_fn_get_property( 'has_title_in_caption' ) && !czr_fn_get_property( 'title_in_caption_below' ) ):
?>
<h2 class="entry-title over-thumb">
<a class="czr-title" href="<?php the_permalink() ?>" rel="bookmark"><?php czr_fn_echo( 'title' ) ?></a>
</h2>
<?php
/* end expanded title */
endif
?>
<div class="tc-g-cont <?php czr_fn_echo('gcont_class') ?>"><?php czr_fn_echo( 'text' ) ?></div>
<?php
/* The expanded grid item has the title inside the caption */
if( czr_fn_get_property( 'has_title_in_caption' ) && czr_fn_get_property( 'title_in_caption_below' ) ):
?>
<h2 class="entry-title over-thumb">
<a class="czr-title" href="<?php the_permalink() ?>" rel="bookmark"><?php czr_fn_echo( 'title' ) ?></a>
</h2>
<?php
/* end expanded title */
endif
?>
</div>
<?php
/* additional effect for not expanded grid items */
if( czr_fn_get_property( 'has_fade_expt' ) ):
?>
<span class="tc-grid-fade_expt"></span>
<?php
endif
?>
</div>
<?php
/* Edit link above the thumb for the expanded item */
if ( czr_fn_get_property( 'has_edit_above_thumb' ) ) {
if ( (bool) $edit_post_link = get_edit_post_link() ) {
czr_fn_edit_button( array( 'class' => 'inverse', 'link' => $edit_post_link ) );
}
}
?>
</div>
<?php
/* Header in the bottom for not expanded */
if( ! czr_fn_get_property( 'has_title_in_caption' ) ) :
?>
<div class="tc-content">
<?php czr_fn_render_template( 'content/post-lists/item-parts/headings/post_list_item_header',
array(
'model_args' => array(
'the_title' => czr_fn_get_property('title')
)
)
)?>
<?php czr_fn_render_template( 'content/post-lists/item-parts/footers/post_list_item_footer' ) ?>
</div>
<?php
endif
?>
</section>
</article>