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

17 lines
936 B
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-24 10:59:39 +00:00
<img class="" src="{getThumb vdetails=$video}" border="1" height="140" width="200"/>
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>