25 lines
1.1 KiB
PHTML
Executable File
25 lines
1.1 KiB
PHTML
Executable File
<link href="<?php echo $block->getAssetUrl('IpSupply_News::css/rssnews.css'); ?>" type="text/css" rel="stylesheet" />
|
|
<div class="ipsupply-rss">
|
|
<?php if($block->getData('url')): ?>
|
|
<?php foreach ($block->getRSSData() as $item): ?>
|
|
<div class="rss-items">
|
|
<a href="<?= $item["link"] ?>">
|
|
<div class="rss-icon">
|
|
<?php if($item["image_url"] != null): ?>
|
|
<img src="<?= $item["image_url"] ?>" />
|
|
<?php else: ?>
|
|
<img id="chat-icon" src="<?= $this->getViewFileUrl('IpSupply_News::images/prology.png'); ?>">
|
|
<?php endif; ?>
|
|
</div>
|
|
</a>
|
|
<div class="rss-infomation">
|
|
<div class="rss-infomation-cell">
|
|
<div class="rss-title"><?= $item["title"] ?></div>
|
|
<div class="rss-description"><?= $item["description"] ?></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
</div>
|