default.php 735 Bytes
<?php

/**
 * @package     Joomla.Site
 * @subpackage  mod_articles_category_custom
 *
 * @copyright   Copyright (C) 2005 - 2018 Open Source Matters, Inc. All rights reserved.
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

defined('_JEXEC') or die;
$catid = JRequest::getInt('catid');
?>
<!-- 記事カテゴリーの表示 -->
<h3><?php echo $list[0]->category_title; ?></h3>
<ul class="category-module-custom videos-custom-item-wrapper <?php echo $moduleclass_sfx; ?>">
    <?php foreach ($list as $item) : ?>
        <li>
            <p class="mod-articles-category-introtext">
                <?php echo $item->displayIntrotext; ?>
            </p>
        </li>
    <?php endforeach; ?>
</ul>