{namespace drc=Drcsystems\DrcSlickCarousel\ViewHelpers} This Template is responsible for creating a table of domain objects. If you modify this template, do not forget to change the overwrite settings in /Configuration/ExtensionBuilder/settings.yaml: Resources: Private: Templates: List.html: keep Otherwise your changes will be overwritten the next time you save the extension in the extension builder

{blockImage.originalResource.description}

{blockVideo.originalResource.description}

{blockVideo.originalResource.description}

{block.text}
$('#{sliderId}').slick({ dots: {settings.dots}, arrows: {settings.arrows}, prevArrow:'', nextArrow:'', infinite: {settings.infinite}, speed: {settings.speed}, slidesToShow: {settings.slidesToShow}, slidesToScroll: {settings.slidesToScroll}, autoplay: {settings.autoplay}, easing:'{settings.easingType}', edgeFriction:'{settings.edgeFriction}', responsive: [ { breakpoint: {settings.breakpointForDesktop}, settings: { slidesToShow: {settings.slidesToShowForDesktop}, slidesToScroll: {settings.slidesToScrollForDesktop}, infinite: {settings.infiniteForDesktop}, dots: {settings.dotsForDesktop} } }, { breakpoint: {settings.breakpointForTablet}, settings: { slidesToShow: {settings.slidesToShowForTablet}, slidesToScroll: {settings.slidesToScrollForTablet}, infinite: {settings.infiniteForTablet}, dots: {settings.dotsForTablet} } }, { breakpoint: {settings.breakpointForMobile}, settings: { slidesToShow: {settings.slidesToShowForMobile}, slidesToScroll: {settings.slidesToScrollForMobile}, infinite: {settings.infiniteForMobile}, dots: {settings.dotsForMobile} } } ] }); $('.playIcon').click(function() { var span = $(this); span.fadeOut(100); var videoId = $(this).parent().find('.video-slide').attr('id'); playId = document.getElementById(videoId); playId.play(); playId.onended = function(){ playId.load(); playId.pause(); span.fadeIn(100); } $(this).parent().find('.video-slide').trigger('click'); }); $('iframe').each(function(){ var frameSrc = $(this).attr('src'); var isEmabed = frameSrc.indexOf('embed'); if(isEmabed < 0){ getbaseUrl = frameSrc.substring(0,frameSrc.lastIndexOf('/')); videoId = frameSrc.substring(frameSrc.lastIndexOf('=')+1); finalUrl = getbaseUrl+/embed/+videoId+'?autoplay=0&wmode=transparent&rel=0&enablejsapi=1'; $(this).attr('src', finalUrl); } heights = $('.thumb img').height(); $('iframe').attr('height', heights); $('.SimpleHtml').css({'height': heights-20}); })