Sha256: 66fa7e1ea3c67b845df0e258a2378646bfcbd77c02b69cca194fe0415a565960

Contents?: true

Size: 1.78 KB

Versions: 2

Compression:

Stored size: 1.78 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

2 entries across 2 versions & 1 rubygems

Version Path
jumbo-jekyll-theme-5.6.9.4 _includes/core/slider.html
jumbo-jekyll-theme-5.6.9.3 _includes/core/slider.html