Cleanup playlists
This commit is contained in:
parent
3f053d9eed
commit
43cbd4f6fe
10 changed files with 175 additions and 121 deletions
19
templates/playlist.tpl
Normal file
19
templates/playlist.tpl
Normal file
|
@ -0,0 +1,19 @@
|
|||
{include file="inc/head.tpl"}
|
||||
<div class="wrapper">
|
||||
<div class="main">
|
||||
{include file="inc/logo.tpl"}
|
||||
<p>Videos extracted from the<i>
|
||||
<a href="{$video->webpage_url}">
|
||||
{$video->title}</a></i> playlist:
|
||||
</p>
|
||||
{foreach $video->entries as $video}
|
||||
<div class="playlist-entry">
|
||||
<img class="thumb" src="{$video->thumbnail}" alt="" width="200" />
|
||||
<h3><a href="{$video->webpage_url}">{$video->title}</a></h3>
|
||||
<a class="downloadBtn" href="{path_for name="redirect"}?url={$video->webpage_url}">Download</a>
|
||||
</div>
|
||||
{/foreach}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
{include file="inc/footer.tpl"}
|
Loading…
Add table
Add a link
Reference in a new issue