summaryrefslogtreecommitdiff
path: root/modules/rss/views/rss_block.html.php
blob: 210c72a593aaa4285b366aad16899f8df57a58e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul id="g-feeds">
<? 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>
<? endforeach ?>
</ul>