-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathreview-course-section.hbs
More file actions
29 lines (29 loc) · 1.21 KB
/
review-course-section.hbs
File metadata and controls
29 lines (29 loc) · 1.21 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
<section class="bg-secondary">
<div class="row" style="text-align: center; justify-content: center;" >
<h2 class="uppercase text-center">What our students say</h2>
</div>
<div class="row text-center">
<div class="col-xs-10 col-xs-offset-1 image-slider slider-all-controls controls-inside pt0 pb0 review-slides">
<ul class="slides">
{{#each courseReviews}}
{{#ifDivisible @index 4 "start"}}
<li>
{{/ifDivisible}}
{{#each @root.reviews.reviewsList}}
{{#ifEquals ../this this.name}}
{{> review-card reviewSlug = ../../reviewSlug}}
{{/ifEquals}}
{{/each}}
{{#ifDivisible @index 4 "end"}}
</li>
{{/ifDivisible}}
{{/each}}
</ul>
</div>
</div>
<div class="row text-center mt64" style="text-align: center; justify-content: center;">
<a href="{{#relativePath @file.path '/reviews/'}}{{/relativePath}}" target="_blank" class="btn btn-filled">Read
More
Reviews</a>
</div>
</section>