| Current Path : /home/helpink/www/templates/astroid_template_zero/html/mod_articles_latest/ |
| Current File : /home/helpink/www/templates/astroid_template_zero/html/mod_articles_latest/media.php |
<?php
/**
* @package Astroid Framework
* @author Astroid Framework https://astroidframe.work
* @copyright Copyright (C) 2023 AstroidFrame.work.
* @license https://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or Later
*/
defined('_JEXEC') or die;
use Joomla\CMS\Uri\Uri;
?>
<div class="latestnews view-media">
<ul class="list-group">
<?php foreach ($list as $item) : $image = json_decode($item->images); ?>
<li itemscope itemtype="https://schema.org/Article">
<?php if ($image->image_intro != "") : ?>
<a class="article-media" href="<?php echo $item->link; ?>" itemprop="url">
<img src="<?php echo Uri::root() . $image->image_intro; ?>" alt="<?php echo htmlspecialchars($image->image_fulltext_alt); ?>">
</a>
<?php endif; ?>
<a class="article-title" href="<?php echo $item->link; ?>" itemprop="url">
<span itemprop="name">
<?php echo $item->title; ?>
</span>
</a>
</li>
<?php endforeach; ?>
</ul>
</div>