first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?php
/**
* Posts loop start template
*/
?><div class="jet-posts__item <?php echo jet_elements_tools()->col_classes( array(
'desk' => $this->get_attr( 'columns' ),
'tab' => $this->get_attr( 'columns_tablet' ),
'mob' => $this->get_attr( 'columns_mobile' ),
) ); ?>">
<div class="jet-posts__inner-box"<?php $this->add_box_bg(); ?>><?php
include $this->get_template( 'item-thumb' );
$this->render_post_terms();
echo '<div class="jet-posts__inner-content">';
include $this->get_template( 'item-title' );
include $this->get_template( 'item-meta' );
include $this->get_template( 'item-content' );
include $this->get_template( 'item-more' );
echo '</div>';
?></div>
</div>