mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 11:29:24 -04:00
12 lines
292 B
PHP
12 lines
292 B
PHP
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
<ul>
|
|
<? foreach ($feed as $entry): ?>
|
|
<li>
|
|
<a href="<?= $entry["link"] ?>"><?= $entry["title"] ?></a>
|
|
<p>
|
|
<?= text::limit_words(strip_tags($entry["description"]), 25); ?>
|
|
</p>
|
|
</li>
|
|
<? endforeach ?>
|
|
</ul>
|