RSSAudioPlayer 1.0

Quick system to play your (currently my) favourite podcast feeds and stuff.
This commit is contained in:
Ismo Vuorinen
2013-07-26 15:33:28 +03:00
parent a49274bea0
commit 9441defd90
17 changed files with 495 additions and 0 deletions

26
templates/list.php Normal file
View File

@@ -0,0 +1,26 @@
<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>