This repository has been archived on 2023-08-16. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Omphaloskepsis/plugins/jetpack/modules/tiled-gallery/tiled-gallery/templates/rectangular-layout.php
2018-03-21 18:19:20 +00:00

23 lines
986 B
PHP

<?php
foreach ( $rows as $row ): ?>
<div
class="gallery-row"
style="width: <?php echo esc_attr( $row->width ); ?>px; height: <?php echo esc_attr( $row->height ); ?>px;"
data-original-width="<?php echo esc_attr( $row->width ); ?>"
data-original-height="<?php echo esc_attr( $row->height ); ?>"
>
<?php foreach ( $row->groups as $group ): ?>
<div
class="gallery-group images-<?php echo esc_attr( count( $group->images ) ); ?>"
style="width: <?php echo esc_attr( $group->width ); ?>px; height: <?php echo esc_attr( $group->height ); ?>px;"
data-original-width="<?php echo esc_attr( $group->width ); ?>"
data-original-height="<?php echo esc_attr( $group->height ); ?>"
>
<?php foreach( $group->items( $needs_attachment_link, $grayscale ) as $item ): ?>
<?php $this->partial( 'item', array( 'item' => $item, 'link' => $link ) ); ?>
<?php endforeach; ?>
</div> <!-- close group -->
<?php endforeach; ?>
</div> <!-- close row -->
<?php endforeach; ?>