-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcarousel.hbs
More file actions
27 lines (23 loc) · 1.02 KB
/
carousel.hbs
File metadata and controls
27 lines (23 loc) · 1.02 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
<section class="tcs-carousel tcs-carousel--best-seller swiper-container py-4 bg-primary-light">
<h2 class="tcs-carousel__title fs-27 text-primary text-center mb-2">
Shop Our Best-Selling Comforters
</h2>
<div class="swiper-wrapper ">
{{#each slides}}
<div class="swiper-slide tcs-carousel-slide-height">
<img src="{{img}}" alt="" srcset="">
<h3 class=" tcs-carousel__slide-title fs-14 ff-lr text-primary">
{{h3}} <span style="visibility: hidden"> {{invisible}} </span>
</h3>
{{!--<span class="tcs-carousel__slide-price fs-12 ff-pm fc-gray">
$44.00 - $209.00
</span>--}}
<span class="tcs-carousel__slide-saleprice fs-12 ff-pm fc-gray">
{{salePrice}}
</span>
<button class="tcs-carousel__button btn btn-primary btn-block mbutton-10">SHOP NOW</button>
</div>
{{/each}}
</div>
<div class="swiper-pagination"></div>
</section>