PluginProbe
Qi Blocks / 1.0.7
Qi Blocks v1.0.7
1.5.3 1.5.2 1.5.1 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1 1.1.1 1.1.2 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 All 45 releases
qi-blocks / inc / blocks / blog-list / templates / content.php

content.php in Qi Blocks 1.0.7, at inc/blocks/blog-list/templates/content.php

26 lines 888 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div <?php echo qi_blocks_get_block_container_html_attributes_string( $params ); ?>>
2 <div <?php qi_blocks_class_attribute( $holder_classes ); ?>>
3 <?php
4 if ( isset( $params[ 'behavior' ] ) && 'masonry' === $params['behavior'] ) { ?>
5 <div <?php qi_blocks_class_attribute( $masonry_classes ); ?>>
6 <?php }
7 ?>
8 <div class="qodef-gutenberg-row">
9 <?php
10 // Include global masonry template from theme
11 qi_blocks_template_part( 'masonry', 'templates/sizer-gutter', '', $params['behavior'] );
12
13 // Include items
14 qi_blocks_template_part( 'blocks/blog-list', 'templates/loop', '', $params );
15 ?>
16 </div>
17 <?php
18 if ( isset( $params[ 'behavior' ] ) && 'masonry' === $params['behavior'] ) { ?>
19 </div>
20 <?php }
21 // Include global pagination from theme
22 qi_blocks_template_part( 'pagination', 'templates/pagination', 'standard', $params );
23 ?>
24 </div>
25 </div>
26