Sha256: a2cb772cb5b83b71b1ed0ec35990d0da4fc65fe0d92e6f2b6bad000a29fef387

Contents?: true

Size: 1.74 KB

Versions: 11

Compression:

Stored size: 1.74 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.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

11 entries across 11 versions & 1 rubygems

Version Path
jumbo-jekyll-theme-5.6.9.2 _includes/core/slider.html
jumbo-jekyll-theme-5.6.9.1 _includes/core/slider.html
jumbo-jekyll-theme-5.6.9 _includes/core/slider.html
jumbo-jekyll-theme-5.6.8 _includes/core/slider.html
jumbo-jekyll-theme-5.6.7 _includes/core/slider.html
jumbo-jekyll-theme-5.6.6 _includes/core/slider.html
jumbo-jekyll-theme-5.6.5 _includes/core/slider.html
jumbo-jekyll-theme-5.6.4 _includes/core/slider.html
jumbo-jekyll-theme-5.6.3 _includes/core/slider.html
jumbo-jekyll-theme-5.6.2 _includes/core/slider.html
jumbo-jekyll-theme-5.6.0 _includes/core/slider.html