alltube/templates/playlist.tpl
Pierre Rudloff 950ea16672 Link to video page on playlist page
Open links on playlist page in new tab to allow to easily get back to playlist
2017-04-25 10:30:30 +02:00

20 lines
712 B
Smarty

{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 target="_blank" class="downloadBtn" href="{path_for name="redirect"}?url={$video->webpage_url}">Download</a>
<a target="_blank" href="{path_for name="video"}?url={$video->webpage_url}">More options</a>
</div>
{/foreach}
</div>
</div>
{include file="inc/footer.tpl"}