slick-8.x-2.x-dev/templates/slick-vanilla.html.twig
templates/slick-vanilla.html.twig
{#
/**
* @file
* Default theme implementation for the slick-vanilla item template.
*
* This is a vanilla alternative for slick-slide.html.twig where everything is
* dumped as is into 'item'. Think of it as a raw individual item output.
* Choosing vanilla means you are on your own, and want a more controlled item.
*
* Available variables:
* - attributes: An array of attributes to apply to the element.
* - item: A renderable array of the slide content.
* - settings: An array containing the given settings.
*
* @see template_preprocess_slick_vanilla()
*/
#}
{%
set classes = [
'slide--' ~ delta
]
%}
{% block slick_vanilla %}
<div{{ attributes.addClass(classes) }}>
{{- item -}}
</div>
{% endblock %}
