clipbucket/upload/styles/cb_27/layout/blocks/videos/video.html

52 lines
2.5 KiB
HTML
Raw Normal View History

<!--<div class="item_video">
2014-03-19 14:39:50 +00:00
<div class="cb_item_container clearfix">
2014-03-19 14:39:50 +00:00
<div class="cb_item_thumb video_thumb" >
<a href="{videoLink($video)}" title="{$video.title|title}">
2014-04-28 11:13:57 +00:00
<span class="video_duration">{if
$video.duration>1}{$video.duration|SetTime}{else}00:00{/if}{*$video.duration|date_format:$config.time*}</span>
2014-04-29 06:00:06 +00:00
<img class="" src="{getThumb vdetails=$video}" border="1" height="140" width="200" style="width: 100%;"/>
2014-03-19 14:39:50 +00:00
</a>
</div>
2014-04-14 17:39:40 +00:00
<div class="item_text" style="height: 45px; overflow: hidden;">
2014-04-24 11:00:34 +00:00
<a href="{videoLink($video)}"><b>{$video.title|truncate:30}</b></a>
2014-03-18 14:25:57 +00:00
</div>
2014-04-24 10:57:25 +00:00
<span class="pull-left" style="margin-top: -31px;"><h5><small>{$video.views} views</small></h5></span>
2014-04-24 10:58:14 +00:00
<span class="pull-right" style="margin-top: -31px;"><h5><small>{$video.date_added|niceTime}</small></h5></span>
2014-03-18 14:25:57 +00:00
</div>
</div>-->
2014-09-19 13:26:52 +00:00
{if $display_type=''}
<div class="item_video">
<div class="cb_item_container clearfix">
<div class="cb_item_thumb video_thumb" >
<a href="{videoLink($video)}" title="{$video.title|title}">
<span class="video_duration">{if
$video.duration>1}{$video.duration|SetTime}{else}00:00{/if}{*$video.duration|date_format:$config.time*}</span>
2014-09-19 09:58:54 +00:00
<img class="" src="{getThumb vdetails=$video} " border="1" height="100" width="100"/>
</a>
2014-05-09 11:39:13 +00:00
</div>
<div class="item_text" style="height: 45px; overflow: hidden;">
2014-09-19 09:58:54 +00:00
<a href="{videoLink($video)}">{$video.title|truncate:30}</a>
</div>
<span class="pull-left"><h5><small>{$video.views} views</small></h5></span>
<span class="pull-right"><h5><small>{$video.date_added|niceTime}</small></h5></span>
</div>
2014-09-19 13:26:52 +00:00
</div>
{/if}
{if $display_type='user_videos'}
<div class="col-md-3 col-sm-4 col-xs-6">
<a href="{videoLink($video)}" title="{$video.title|title}">
<img src="{getThumb vdetails=$video}" id="thumbs_{$video.videoid}" title=""/>
</a>
<p class="cbHomeVidDuration duration_view">
{if $video.duration>1}
{$video.duration|SetTime}
{else}
00:00
{/if}
</p>
<a href="{videoLink($video)}" title="{$video.title|title}"><h5><b>{$video.title|truncate:33}</b></h5></a>
<span class="pull-left"><h5><small>{$video.views} views</small></h5></span>
<span class="pull-right"><h5><small>{$video.date_added|niceTime}</small></h5></span>
</div>
{/if}