Files
rss-audio-player/templates/list.php
Ismo Vuorinen 9441defd90 RSSAudioPlayer 1.0
Quick system to play your (currently my) favourite podcast feeds and stuff.
2013-07-26 15:33:28 +03:00

26 lines
468 B
PHP

<div class="row">
<div class="large-12 columns">
<div class="panel">
<h2>Our known feeds</h2>
<ul class="inline-list feeds-list">
<?php
foreach ($this->feeds as $key => $url) {
$title = $this->getFeedTitle($key);
echo "\t\t\t\t" . $this->lst(
$this->lnk(
$this->baseurl . '/show/' . $key, // Our link
$title
)
). "\n";
}
?>
</ul>
</div>
</div>
</div>