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