# meow-gallery/4.1.5/classes/builders/cell.tpl.php

Meow Gallery, version 4.1.5. 19 lines.

- Page: https://pluginprobe.com/plugins/meow-gallery/4.1.5/code/classes/builders/cell.tpl.php
- Raw: https://pluginprobe.com/plugins/meow-gallery/4.1.5/raw/classes/builders/cell.tpl.php
- Modified: 2021-07-30T13:05:06+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/meow-gallery/4.1.5/code/classes/builders/cell.tpl.php#L10-L20`.

```php
<figure class="mgl-item"<?php echo $attributes ?>>
	<div class="mgl-icon">
		<div class="mgl-img-container">
			<?php if ( !$isPreview && $linkUrl ): ?>
				<a href="<?php echo esc_url( $linkUrl ) ?>">
						<?php echo $imgSrc ?>
				</a>
			<?php else: ?>
				<?php echo $imgSrc ?>
			<?php endif; ?>
		</div>
	</div>
	<?php if ( $caption ): ?>
	<figcaption class="mgl-caption">
			<p><?php echo $caption ?></p>
	</figcaption>
	<?php endif; ?>
</figure>

```
