Subversion Repositories SmartDukaan

Rev

Rev 29676 | Rev 29785 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 29676 Rev 29729
Line -... Line 1...
-
 
1
 
1
#foreach( $offer in $publishedOffers )
2
#foreach( $offer in $publishedOffers )
2
    <div class="row col-lg-12 info-box white-bg" style="margin-bottom:1px">
3
    <div class="col-lg-6 info-box white-bg" style="margin-bottom:1px">
3
        <h3 style="margin-top:-2px;color:#c70db8;margin-bottom:4px;font-weight:bold">
4
        <h3 style="margin-top:-2px;color:#c70db8;margin-bottom:4px;font-weight:bold; font-size:20px;">
4
            $offer.getName()
5
            $offer.getName()
5
        </h3>
6
        </h3>
6
        <h4 style="margin-top:-2px;font-size:15px;color:#5547d0;font-weight:bold">
7
        <h4 style="margin-top:-2px;font-size:15px;color:#5547d0;font-weight:bold">
7
        	From $dateMonthFormatter.format($offer.getStartDate()) to $dateMonthFormatter.format($offer.getEndDate()), Based on $offer.getSchemeType()
8
        	From $dateMonthFormatter.format($offer.getStartDate()) to $dateMonthFormatter.format($offer.getEndDate()), Based on $offer.getSchemeType()
8
        	#if($offer.getActivationBrands())
9
        	#if($offer.getActivationBrands())
Line 14... Line 15...
14
        </h4>
15
        </h4>
15
        <p style="float:right;font-size:15px; margin:0px 0px 0px; " class="description-offer"
16
        <p style="float:right;font-size:15px; margin:0px 0px 0px; " class="description-offer"
16
           data-offerid="$offer.getId()" data-toggle="modal"
17
           data-offerid="$offer.getId()" data-toggle="modal"
17
           data-backdrop="static" data-keyboard="false"><a href="javascript:void(0)">All terms & conditions</a></p>
18
           data-backdrop="static" data-keyboard="false"><a href="javascript:void(0)">All terms & conditions</a></p>
18
    </div>
19
    </div>
19
#end
-
 
20
20
#end
-
 
21