Sha256: 5662e82ad47a0355dea077dafbed070f149c9de4aa9bd1d05ca5b3016e777486

Contents?: true

Size: 1.75 KB

Versions: 13

Compression:

Stored size: 1.75 KB

Contents

<div class="owl-carousel slider-block owl-theme" data-size="{{include.object.items | size }}"
{% if include.object.xs_items %}data-xs-number="{{include.object.xs_items}}"{% endif %}
{% if include.object.sm_items %}data-sm-number="{{include.object.sm_items}}"{% endif %}
{% if include.object.md_items %}data-md-number="{{include.object.md_items}}"{% endif %}
{% if include.object.lg_items %}data-lg-number="{{include.object.lg_items}}"{% endif %}
{% if include.object.dots %}data-dots="true"{% endif %}
{% if include.object.nav %}data-nav="true"{% endif %}
{% if include.object.seconds_per_slide %}data-seconds-per-slide="{{include.object.seconds_per_slide}}"{% endif %}>
    {% if include.object.items %}
        {% assign carousel_items = include.object.items %}
    {% elsif include.object.data_source %}
        {% assign carousel_items = site.data[include.object.data_source] %}
    {% endif %}
    {% for item in carousel_items %}
        {% if include.object.lightbox_enabled %}<a data-featherlight="{{item.image}}">{% endif %}
        <div class="item">
            {% if item.image %}
                {% capture image_path %}{{item.image | remove_first: "/" }}{% endcapture %}
                {% capture full_path %}{{item.image}}{% endcapture %}
                {% responsive_image_block %}
                template: _includes/thumbnail_image.html
                path: {{ image_path }}
                fullpath: {{ full_path }}
                {% if item.title %}
                title: {{ item.title | slugify: "ascii"}}
                alt: {{ item.title | slugify: "ascii"}}
                {% endif %}
                {% endresponsive_image_block %}
            {% endif %}
        </div>
        {% if include.object.lightbox_enabled %}</a>{% endif %}
    {% endfor %}
</div>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
jumbo-jekyll-theme-5.5.6 _includes/core/slider.html
jumbo-jekyll-theme-5.5.5 _includes/core/slider.html
jumbo-jekyll-theme-5.5.4 _includes/core/slider.html
jumbo-jekyll-theme-5.5.3 _includes/core/slider.html
jumbo-jekyll-theme-5.5.2 _includes/core/slider.html
jumbo-jekyll-theme-5.5.1 _includes/core/slider.html
jumbo-jekyll-theme-5.5.0 _includes/core/slider.html
jumbo-jekyll-theme-5.4.0 _includes/core/slider.html
jumbo-jekyll-theme-5.3.4 _includes/core/slider.html
jumbo-jekyll-theme-5.3.3 _includes/core/slider.html
jumbo-jekyll-theme-5.3.2 _includes/core/slider.html
jumbo-jekyll-theme-5.3.1 _includes/core/slider.html
jumbo-jekyll-theme-5.3.0 _includes/core/slider.html