| Current Path : /home/wuectly/www/03cbe/ |
| Current File : /home/wuectly/www/03cbe/archive.zip |
PK D�#]��q�(
(
default_items.phpnu &1i� <?php
/**
* @package Joomla.Site
* @subpackage com_content
*
* @copyright Copyright (C) 2005 - 2021 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\HTML\HTMLHelper;
use Joomla\CMS\Layout\LayoutHelper;
HTMLHelper::addIncludePath(JPATH_COMPONENT . '/helpers');
$params = $this->params;
$info = $params->get('info_block_position', 2);
$aInfo1 = ($params->get('show_publish_date') || $params->get('show_category') || $params->get('show_parent_category') || $params->get('show_author'));
$aInfo2 = ($params->get('show_create_date') || $params->get('show_modify_date') || $params->get('show_hits'));
$topInfo = ($aInfo1 && $info != 1) || ($aInfo2 && $info == 0);
$botInfo = ($aInfo1 && $info == 1) || ($aInfo2 && $info != 0);
$icons = $params->get('access-edit') || $params->get('show_print_icon') || $params->get('show_email_icon');
?>
<div id="archive-items">
<?php foreach ($this->items as $i => $item) : ?>
<article class="row<?php echo $i % 2; ?>" itemscope itemtype="http://schema.org/Article">
<?php echo LayoutHelper::render('joomla.content.item_title', array('item' => $item, 'params' => $params, 'title-tag'=>'h2')); ?>
<?php // Content is generated by content plugin event "onContentAfterTitle" ?>
<?php echo $item->event->afterDisplayTitle; ?>
<!-- Aside -->
<?php if ($topInfo || $icons) : ?>
<aside class="article-aside clearfix">
<?php if ($topInfo): ?>
<?php echo LayoutHelper::render('joomla.content.info_block.block', array('item' => $item, 'params' => $params, 'position' => 'above')); ?>
<?php endif; ?>
<?php if ($icons): ?>
<?php echo LayoutHelper::render('joomla.content.icons', array('item' => $item, 'params' => $params)); ?>
<?php endif; ?>
</aside>
<?php endif; ?>
<!-- //Aside -->
<?php // Content is generated by content plugin event "onContentBeforeDisplay" ?>
<?php echo $item->event->beforeDisplayContent; ?>
<?php if ($params->get('show_intro')) :?>
<div class="intro" itemprop="articleBody"> <?php echo HTMLHelper::_('string.truncateComplex', $item->introtext, $params->get('introtext_limit')); ?> </div>
<?php endif; ?>
<!-- footer -->
<?php if ($botInfo) : ?>
<footer class="article-footer clearfix">
<?php echo LayoutHelper::render('joomla.content.info_block.block', array('item' => $item, 'params' => $params, 'position' => 'below')); ?>
</footer>
<?php endif; ?>
<!-- //footer -->
<?php // Content is generated by content plugin event "onContentAfterDisplay" ?>
<?php echo $item->event->afterDisplayContent; ?>
</article>
<?php endforeach; ?>
</div>
<?php
$pagesTotal = isset($this->pagination->pagesTotal) ? $this->pagination->pagesTotal : $this->pagination->get('pages.total');
if ($this->params->def('show_pagination', 2) == 1 || ($this->params->get('show_pagination') == 2 && $pagesTotal > 1)) : ?>
<nav class="pagination-wrap clearfix">
<?php if ($this->params->def('show_pagination_results', 1)) : ?>
<div class="counter">
<?php echo $this->pagination->getPagesCounter(); ?>
</div>
<?php endif; ?>
<?php echo $this->pagination->getPagesLinks(); ?>
</nav>
<?php endif; ?>PK D�#]�6�
index.htmlnu &1i� <!DOCTYPE html><title></title>PK D�#]���H� � default.phpnu &1i� <?php
/**
* @package Joomla.Site
* @subpackage com_content
*
* @copyright Copyright (C) 2005 - 2021 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\Language\Text;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Router\Route;
HTMLHelper::addIncludePath(JPATH_COMPONENT . '/helpers');
HTMLHelper::addIncludePath(T3_PATH . '/html/com_content');
HTMLHelper::addIncludePath(dirname(dirname(__FILE__)));
if(version_compare(JVERSION, '4','lt')){
HTMLHelper::_('behavior.caption');
}
?>
<div class="archive<?php echo $this->pageclass_sfx; ?>">
<?php if ($this->params->get('show_page_heading')) : ?>
<div class="page-header">
<h1><?php echo $this->escape($this->params->get('page_heading')); ?></h1>
</div>
<?php endif; ?>
<form id="adminForm" action="<?php echo Route::_('index.php'); ?>" method="post" class="form-inline">
<fieldset class="filters">
<div class="filter-search form-group">
<?php if ($this->params->get('filter_field') !== 'hide') : ?>
<div class="form-group">
<input type="text" name="filter-search" id="filter-search" value="<?php echo $this->escape($this->filter); ?>" class="form-control col-sm-2" onchange="document.getElementById('adminForm').submit();" placeholder="<?php echo Text::_('COM_CONTENT_TITLE_FILTER_LABEL'); ?>"/>
</div>
<?php endif; ?>
<?php echo $this->form->monthField; ?>
<?php echo $this->form->yearField; ?>
<?php echo $this->form->limitField; ?>
</div>
<button type="submit" class="btn btn-primary"><?php echo Text::_('JGLOBAL_FILTER_BUTTON'); ?></button>
<input type="hidden" name="view" value="archive"/>
<input type="hidden" name="option" value="com_content"/>
<input type="hidden" name="limitstart" value="0"/>
</fieldset>
<?php echo $this->loadTemplate('items'); ?>
</form>
</div>
PK D�#]��q�(
(
default_items.phpnu &1i� PK D�#]�6�
i
index.htmlnu &1i� PK D�#]���H� � �
default.phpnu &1i� PK � �