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,14 @@
<?php
/**
* Images Layout template
*/
$settings = $this->get_settings_for_display();
$data_settings = $this->generate_setting_json();
$classes_list[] = 'layout-type-' . $settings['layout_type'];
$classes = implode( ' ', $classes_list );
?>
<div class="jet-images-layout <?php echo $classes; ?>" <?php echo $data_settings; ?>>
<?php $this->__get_global_looped_template( 'images-layout', 'image_list' ); ?>
</div>