This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
42 lines (41 loc) · 1.73 KB
/
main.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
<div class="panel panel-default ng-scope" ng-hide="items">
<div class="panel-heading">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h2 class="ld-noUnderline"> {{question}} </h2>
<div ng-hide="first" ng-click="goBack()" class="btn ld-btn-defaultCta backBtn pull-right">
<i class="fa fa-chevron-left"></i> Go Back
</div>
</div>
</div>
<div class="panel-body">
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 choiceSet" ng-class="{'col-md-offset-2 col-lg-offset-2':{{$first&&productSelection.length==2}}}" ng-repeat="o in productSelection">
<a ng-click="getNextSet(o, $index)">
<div class="thumbnail">
<img class="hidden-xs" src="{{o.img}}">
<div class="caption text-center">
<div class="btn btn-lg btn-block ld-btn-primaryCta choiceBtn" ng-click="getNextSet(o, $index)"> {{o.text | limitTo: 30 }} {{ o.text.length > 30 ? "..." : ""}} </div>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="panel panel-default ng-scope" ng-show="items">
<div class="panel-heading">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<h2 class="ld-noUnderline"> Based upon your selection, we have found these products for you: </h2>
</div>
</div>
<div class="panel-body">
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-4 choiceSet ng-scope" ng-class="{'col-md-offset-2 col-lg-offset-2':{{$first&&productSelection.length==2}}}" ng-repeat="item in itemSelection">
<a href="{{item.link}}">
<div class="thumbnail">
<img class="hidden-xs" src="{{item.img}}">
<div class="caption text-center">
<div class="btn btn-lg btn-block ld-btn-primaryCta choiceBtn"> {{item.name | limitTo: 30 }} {{ item.name.length > 30 ? "..." : ""}} </div>
</div>
</div>
</a>
</div>
</div>
</div>