| Current Path : /home/megadansyp/www/components/com_eventgallery/views/snippets/tmpl/event/ |
| Current File : /home/megadansyp/www/components/com_eventgallery/views/snippets/tmpl/event/tiles_thumbnails.php |
<?php
/**
* @package Sven.Bluege
* @subpackage com_eventgallery
*
* @copyright Copyright (C) 2005 - 2019 Sven Bluege All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
// no direct access
defined('_JEXEC') or die('Restricted access'); ?>
<div class="eventgallery-tiles-list eventgallery-event-tiles-list">
<div class="eventgallery-tiles eventgallery-thumbnails thumbnails">
<?php foreach ($this->entries as $entry) : /** @var EventgalleryLibraryFile $entry */ ?>
<div class="eventgallery-tile thumbnail-container">
<div class="wrapper">
<div class="event-thumbnails">
<?php $this->showContent=false; $this->entry=$entry; $this->cssClass=""; echo $this->loadSnippet('event/inc/thumb'); ?>
<div style="clear: both"></div>
</div>
<?php $this->showContent=true; $this->entry=$entry; echo $this->loadSnippet('event/inc/thumbs_content'); ?>
</div>
</div>
<?php endforeach ?>
<div style="clear: both"></div>
</div>
</div>