Your IP : 216.73.216.229


Current Path : /home/jeromecohp/www/plugins/system/fs_grid/element/fs_grid/templates/
Upload File :
Current File : /home/jeromecohp/www/plugins/system/fs_grid/element/fs_grid/templates/content.php

<?php
/**
 * @package   Grid 10 element for YOOtheme Pro
 * @author    Flart Studio https://www.flart.studio
 * @copyright Copyright (C) Flart Studio
 * @license   GNU General Public License version 3, or later
 */

// No direct access to this file
defined('_JEXEC') or die();

?>

<?php if (count($children) > 1) : ?>
    <ul>
        <?php foreach ($children as $child) : ?>
            <li>
                <?= $builder->render($child, ['element' => $props]) ?>
            </li>
        <?php endforeach ?>
    </ul>
<?php elseif (count($children) == 1) : ?>
    <div>
        <?= $builder->render($children[0], ['element' => $props]) ?>
    </div>
<?php endif ?>