mirror of
https://github.com/pmoreno-rodriguez/grav-theme-future2021.git
synced 2025-06-07 20:08:54 +00:00
24 lines
633 B
Twig
Executable file
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>
|
|
|