You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
463 B
21 lines
463 B
<?php
|
|
/**
|
|
* @package Joomla.Site
|
|
* @subpackage com_foos
|
|
*
|
|
* @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
\defined('_JEXEC') or die;
|
|
|
|
use Joomla\CMS\Layout\LayoutHelper;
|
|
?>
|
|
|
|
<div class="com-foo-category">
|
|
<?php
|
|
$this->subtemplatename = 'items';
|
|
echo LayoutHelper::render('joomla.content.category_default', $this);
|
|
?>
|
|
</div>
|