50 lines
1.3 KiB
Plaintext
50 lines
1.3 KiB
Plaintext
<div class="carousel-wrapper">
|
|
<div class="carousel-heading">Analysis and Reporting</div>
|
|
<div class="analysis-and-reporting-carousel">
|
|
{% for course in courses.in_catalog %}
|
|
{% for category in course.categories %}
|
|
{% if category.name == 'Analysis and Reporting' %}
|
|
<div class="carousel-cards-container">
|
|
{% include 'cards_course' %}
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.analysis-and-reporting-carousel {
|
|
margin-top: 25px;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
$(document).ready(function(){
|
|
|
|
$(".analysis-and-reporting-carousel").slick({
|
|
slidesToShow: 3,
|
|
cssEase: 'linear',
|
|
prevArrow: '<i class="fal fa-chevron-left"></i>',
|
|
nextArrow: '<i class="fal fa-chevron-right"></i>',
|
|
infinite: false,
|
|
responsive: [
|
|
{
|
|
breakpoint: 1170,
|
|
settings: {
|
|
slidesToShow: 2,
|
|
}
|
|
},
|
|
{
|
|
breakpoint: 768,
|
|
settings: {
|
|
slidesToShow: 1,
|
|
slidesToScroll: 1,
|
|
dots: false,
|
|
arrows: true,
|
|
}
|
|
}
|
|
]
|
|
});
|
|
});
|
|
</script> |