mirror of
https://github.com/ivuorinen/rss-audio-player.git
synced 2026-02-08 09:48:55 +00:00
RSSAudioPlayer 1.0
Quick system to play your (currently my) favourite podcast feeds and stuff.
This commit is contained in:
26
templates/list.php
Normal file
26
templates/list.php
Normal 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>
|
||||
Reference in New Issue
Block a user