HEX
Server: LiteSpeed
System: Linux altar40.supremepanel40.com 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
User: sescorpcl (4477)
PHP: 8.2.32
Disabled: NONE
Upload Files
File: /home/sescorpcl/www/wp-content/themes/customizr/templates/parts/modules/grid/grid_wrapper.php
<?php
/**
 * The template for displaying the grid item wrapper in lists of posts
 *
 * In WP loop
 *
 * @package Customizr
 * @since Customizr 3.5.0
 */

/* Are we at the start of the loop? in this case print a section wrapper element */
if ( czr_fn_get_property( 'print_start_wrapper' ) ) : ?>
<div id="<?php czr_fn_echo('element_id') ?>" class="grid-container grid-container__classic <?php czr_fn_echo('element_class') ?>" <?php czr_fn_echo('element_attributes') ?>>
  <div class="grid__wrapper grid">
<?php
endif;
  /* Is the item we're about to display the first of a grid section (the expanded sticky is both a first and last of a grid section)*/
  if ( czr_fn_get_property( 'is_first_of_grid' ) ) :
  ?>
  <section class="row <?php czr_fn_echo('grid_section_class') ?>">
  <?php
  endif;
    czr_fn_render_template(
      'modules/grid/grid_item',
      array( 'model_args' => czr_fn_get_property( 'grid_item' ) )
    );

  /* Is the item we're about to display the last of a grid section (the expanded sticky is both a first and last of a grid section)*/
  if ( czr_fn_get_property( 'is_last_of_grid' ) ) :
  ?>
  </section>
  <?php
  endif;
/* Close se section at the end of the loop */
if ( czr_fn_get_property( 'print_end_wrapper' ) ) : ?>
  </div>
</div>
<?php endif;