Files
gallery3/modules/gallery/views/admin_block_news.html.php

12 lines
300 B
PHP
Raw Normal View History

<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
2018-01-28 12:43:27 +01:00
<?php foreach ($feed as $entry): ?>
<li>
<a href="<?= $entry["link"] ?>"><?= $entry["title"] ?></a>
<p>
<?= text::limit_words(strip_tags($entry["description"]), 25); ?>
</p>
</li>
2018-01-28 12:43:27 +01:00
<?php endforeach ?>
</ul>