summaryrefslogtreecommitdiff
path: root/modules/rss/views/rss_block.html.php
blob: f964329c632e1d44e93429ee5161230952161432 (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="gFeeds">
<? foreach($feeds as $title => $url): ?>
  <li style="clear: both;">
    <span class="ui-icon-left">
    <a href="<?= $url ?>">
      <span class="ui-icon ui-icon-signal-diag"></span>
      <?= $title ?>
    </a>
    </span>
  </li>
<? endforeach ?>
</ul>