-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadView.html
More file actions
36 lines (35 loc) · 1.12 KB
/
adView.html
File metadata and controls
36 lines (35 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<div class="row">
<div class="col-md-8">
<br/>
<md-button class="md-fab md-mini md-warn pull-right" aria-label="Post Ad"
href="#/">
<i class="material-icons" style="font-size: 1.6em;">clear</i>
</md-button>
<br/>
<br/>
<qviewad></qviewad>
</div>
<div ng-controller="viewAllController" class="col-md-4" style="overflow: hidden; height: 100%;">
<div class="q-overlay">
</div>
<div style="width: 300%">
<div class="row" ng-repeat="row in advArray">
<div ng-class="(12/row.length) | col" ng-repeat="col in row" style="height: 450px;">
<quikrad details="$index"
title_img="(col.image_count>1)?col.images[0]:col.images"
ad_title="col.title"
ad_locality="col.ad_locality"
ad_brand="col.attribute_Brand_name"
ad_model="col.attribute_Body_Style"
kms_driven="col.kms_Driven"
make_year="col.year"
price="col.attribute_Price"
>
</quikrad>
<br style="clear: both;"/>
</div>
<br style="clear: both;"/>
</div>
</div>
</div>
</div>