Revert "Merge pull request #2 from mgrove36/development"

This reverts commit 8b8da21593.
This commit is contained in:
2020-03-03 11:07:22 +00:00
parent 9e9f9f8c64
commit fa40e6fd0e
91 changed files with 4529 additions and 4099 deletions

View File

@@ -1,6 +1,39 @@
$(document).ready(function(){
// remove black bar if article has no content
if (! $.trim($(".article-content").html())) {
$(".article-content").hide();
}
// initiate carousel
$('.carousel').slick({
dots: true,
infinite: false,
speed: 300,
slidesToShow: 4,
slidesToScroll: 4,
adaptiveHeight: true,
autoplay: true,
responsive: [
{
breakpoint: 1024,
settings: {
slidesToShow: 3,
slidesToScroll: 2,
dots: true
}
},
{
breakpoint: 600,
settings: {
slidesToShow: 2,
slidesToScroll: 1
}
},
{
breakpoint: 480,
settings: {
slidesToShow: 1,
slidesToScroll: 1
}
}
]
});
// overwrite auto-generated inline styling
$(".slick-prev, .slick-next").hide();
});

File diff suppressed because one or more lines are too long

1
_site/js/slick.min.js vendored Normal file

File diff suppressed because one or more lines are too long