Files
gallery3/modules/rss/views/rss_block.html.php

14 lines
367 B
PHP
Raw Normal View History

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