grav-theme-future2021/templates/partials/owl-carousel.html.twig
2023-07-13 21:50:36 +02:00

24 lines
633 B
Twig
Executable file

{# OWL Carousel twig template for Future2021 theme #}
{% block stylesheets %}
<style>
.wrapper-carousel-{{ owl_id }} {
display: flex;
width: 100%;
}
.carousel-{{ owl_id }} {
width: 0;
margin-bottom: 2rem;
flex-basis: 100%;
}
</style>
{% endblock %}
<div class="wrapper-carousel-{{ owl_id }}">
<div class="carousel-{{ owl_id }}">
<div class="owl-carousel owl-theme" id="{{ owl_id }}">
{{ owl_items|regex_replace('(^\n?<p>|<\/p>$)','')|raw }}
</div>
</div>
</div>