| Current Path : /home/gonzalx/www/plugins/content/jw_sigpro/jw_sigpro/tmpl/Seamless_CSS_Grid/ |
| Current File : /home/gonzalx/www/plugins/content/jw_sigpro/jw_sigpro/tmpl/Seamless_CSS_Grid/default.php |
<?php
/**
* @version 3.8.x
* @package Simple Image Gallery Pro
* @author JoomlaWorks - https://www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2021 JoomlaWorks Ltd. All rights reserved.
* @license https://www.joomlaworks.net/license
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
?>
<ul id="sigProId<?php echo $gal_id; ?>" class="sigProContainer sigProSeamlessCssGrid<?php echo $extraWrapperClass; ?>" style="grid-template-columns:repeat(auto-fill, minmax(<?php echo $gal_width; ?>px, 1fr));">
<?php foreach($gallery as $count=>$photo): ?>
<li class="sigProThumb"<?php if($gal_singlethumbmode && $count>0) echo ' style="display:none !important;"'; ?>>
<a href="<?php echo $photo->sourceImageFilePath; ?>" class="sigProLink<?php echo $extraClass; ?>" style="height:<?php echo $photo->height; ?>px;" rel="<?php echo $relName; ?>[gallery<?php echo $gal_id; ?>]" title="<?php echo $photo->captionDescription.$photo->downloadLink.$modulePosition; ?>" target="_blank" data-thumb="<?php echo $photo->thumbImageFilePath; ?>"<?php echo $customLinkAttributes; ?>>
<?php if(($gal_singlethumbmode && $count==0) || !$gal_singlethumbmode): ?>
<img loading="lazy" class="sigProImg" src="<?php echo $photo->thumbImageFilePath; ?>" alt="<?php echo htmlentities($photo->captionTitle, ENT_QUOTES, 'UTF-8'); ?>" />
<?php endif; ?>
</a>
</li>
<?php endforeach; ?>
</ul>
<?php if($itemPrintURL): ?>
<div class="sigProPrintMessage">
<?php echo JText::_('JW_SIGP_PLG_PRINT_MESSAGE'); ?>:
<br />
<a title="<?php echo $row->title; ?>" href="<?php echo $itemPrintURL; ?>"><?php echo $itemPrintURL; ?></a>
</div>
<?php endif; ?>