2009-02-24 19:19:58 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2009-10-04 00:27:22 -06:00
|
|
|
<ul id="g-feeds">
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php foreach($feeds as $url => $title): ?>
|
2009-02-24 19:19:58 +00:00
|
|
|
<li style="clear: both;">
|
|
|
|
|
<span class="ui-icon-left">
|
2009-06-14 21:51:54 -07:00
|
|
|
<a href="<?= rss::url($url) ?>">
|
2009-02-24 19:19:58 +00:00
|
|
|
<span class="ui-icon ui-icon-signal-diag"></span>
|
2009-08-29 22:54:20 -07:00
|
|
|
<?= html::purify($title) ?>
|
2009-02-24 19:19:58 +00:00
|
|
|
</a>
|
|
|
|
|
</span>
|
|
|
|
|
</li>
|
2018-01-28 12:43:27 +01:00
|
|
|
<?php endforeach ?>
|
2009-05-31 01:14:28 -07:00
|
|
|
</ul>
|