collections and view collections for videos structure updated

This commit is contained in:
jamilrehman 2016-05-05 14:43:32 +05:00
parent 72db1ac015
commit 582300aaec
5 changed files with 27 additions and 3 deletions

View file

@ -102,7 +102,7 @@
{foreach from=$collections item=collection}
{$first_col_thumb = $cbcollection->coll_first_thumb($collection,'l')}
<div class="clearfix collection-item col-lg-6 col-md-6 col-sm-12 col-xs-12">
{include file="$style_dir/blocks/collection-item.html" type ='p'}
{include file="$style_dir/blocks/collection-item.html"}
</div>
{/foreach}
</div>

View file

@ -10,6 +10,13 @@
{lang code='collection' assign='object_type'}
{uploadButton details=$c output='link' target="_blank" class='btn btn-success pull-right'}
</h1>
{if $c.type == 'photos'}
{$type = 'p'}
{else}
{$type = 'v'}
{/if}
{if $type == 'p'}
<div id="photos" class="clearfix row">
{section name=list loop=$objects}
<div class="item-photo col-lg-4 col-md-4 col-sm-6 col-xs-12">
@ -23,6 +30,21 @@
<div class="item-photo col-lg-4 col-md-4 col-sm-6 col-xs-6">
{/section}
</div>
{else}
<div class="videos clearfix">
<div class="clearfix row">
{if $objects}
{foreach $objects as $video}
<div class="item-video col-lg-3 col-md-4 col-sm-4 col-xs-12">
{include file="$style_dir/blocks/videos/video.html" display_type='homeVideos'}
</div>
{/foreach}
{else}
<div class="well well-info">No Videos Found !</div>
{/if}
</div>
</div>
{/if}
<div align="center" class="clearfix">
{include file="$style_dir/blocks/pagination.html"}
</div>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -741,6 +741,8 @@ h1{
display: block;
background:$white;
padding: 10px 0 0;
overflow: hidden;
height: 26px;
}
}