summaryrefslogtreecommitdiff
path: root/modules/rss/views
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-02-24 19:19:58 +0000
committerTim Almdal <tnalmdal@shaw.ca>2009-02-24 19:19:58 +0000
commit550d46da666a1159eda58fba17b1f3d920682d0c (patch)
treed4458d17dacc4889afe0c5e11fe6c9f28012b176 /modules/rss/views
parent5b35490be1e58d32f2dcc5c3f948ce821051c596 (diff)
Added a block to the siebar that lists the available feeds
Diffstat (limited to 'modules/rss/views')
-rw-r--r--modules/rss/views/rss_block.html.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/rss/views/rss_block.html.php b/modules/rss/views/rss_block.html.php
new file mode 100644
index 00000000..10106af9
--- /dev/null
+++ b/modules/rss/views/rss_block.html.php
@@ -0,0 +1,13 @@
+<?php defined("SYSPATH") or die("No direct script access.") ?>
+<ul id="gFeeds">
+<? foreach($feeds as $text => $url): ?>
+ <li style="clear: both;">
+ <span class="ui-icon-left">
+ <a href="<?= $url ?>">
+ <span class="ui-icon ui-icon-signal-diag"></span>
+ <?= $text ?>
+ </a>
+ </span>
+ </li>
+<? endforeach ?>
+</ul> \ No newline at end of file