clipbucket/upload/styles/helloWorld/layout/index.html
2016-10-18 12:59:58 +05:00

17 lines
No EOL
519 B
HTML
Executable file

<div class="container clearfix">
<h1>recent videos</h1>
<div class="clearfix">
{$most_viewed=$cbvid->get_videos(["order"=>"date_added DESC"])}
{if $most_viewed}
<div class="row clearfix">
{foreach from=$most_viewed item=video}
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12">
{include file="$style_dir/blocks/videos/video.html" display_type='homeVideos'}
</div>
{/foreach}
</div>
{else}
<div class="well well-info">No Videos Found !</div>
{/if}
</div>
</div>