-
Notifications
You must be signed in to change notification settings - Fork 0
/
promotion2.html
49 lines (37 loc) · 1.26 KB
/
promotion2.html
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
37
38
39
40
41
42
43
44
45
46
47
48
49
<ion-view>
<ion-nav-bar class="navbar" align-title="center">
<ion-nav-back-button class="button-clear">
<i class="ion-arrow-left-b icon-header"> Promotion
<span ng-show="section=='A'"> A </span>
<span ng-show="section=='B'"> B </span></i>
</ion-nav-back-button>
<ion-nav-buttons side="right">
<button class="button-clear" ng-click="toHome()">
<i class="ion-home icon-header" style="font-size:20px"></i>
</button>
<button class="button-clear">
<i class="ion-star icon-header" style="font-size:20px"></i>
</button>
</ion-nav-buttons>
</ion-nav-bar>
<ion-content style="background-color:#eee;background-image: url(img/left_panel_bg.jpg) !important; background-repeat: repeat-y !important;">
<div class="card" align="center" ng-show="section=='A'">
<div class="row" style="border-radius:3px;background-color:white;">
<div class="col">
<img src="img/brand_logo/5-food-resto.jpg" style="width:100%;"/>
<br/>
lorem ipsum
</div>
</div>
</div>
<div class="card" align="center" ng-show="section=='B'">
<div class="row" style="border-radius:3px;background-color:white;">
<div class="col">
<img src="img/brand_logo/1-logo-square.png" style="width:100%;"/>
<br/>
lorem ipsum
</div>
</div>
</div>
</ion-content>
</ion-view>