blob: cb276ae595b4071afac7dbf6efb0c7cc08e0b871 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?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>
|