{% if section.blocks.size > 0 %}
{%- assign natural_height = false -%}
{% if section.settings.section_height == ‘natural’ %}
{% comment %}
Get first image’s aspect ratio
{% endcomment %}
{% for block in section.blocks limit: 1 %}
{% if block.settings.image != blank %}
{%- assign natural_height = true -%}
{%- capture natural_height_ratio -%}{{ 100 | divided_by: block.settings.image.aspect_ratio }}%{% endcapture %}
{% endif %}
{% endfor %}
{% endif %}
{% if natural_height %}
.hero-natural--{{ section.id }} { height: 0; padding-bottom: {{ natural_height_ratio }}; }{% endif %}
{% if natural_height %}
{%- assign hero_text = false -%}
{%- assign link_slide = false -%}
{% if block.settings.title != blank or block.settings.subheading != blank or block.settings.link_text != blank %}
{%- assign hero_text = true -%}
{% endif %}
{% if block.settings.link_text == blank and block.settings.link != blank %}
{%- assign link_slide = true -%}
{% endif %}
{%- assign img_url = block.settings.image | img_url: ‘1x1’ | replace: ‘1x1.', '{width}x.’ -%}
{% else %}
{{ ‘lifestyle-1’ | placeholder_svg_tag: ‘placeholder-svg’ }}
{% endif %}
{% if link_slide %}
{% endif %}
{% if hero_text %}
{% if link_slide %}
{% endif %}
{% if section.blocks.size == 0 %}
{% schema %}
{
“name”: “Slideshow”,
“class”: “index-section–hero”,
“max_blocks”: 5,
“settings”: [
{
“type”: “select”,
“id”: “section_height”,
“label”: “Desktop height”,
“default”: “650px”,
“options”: [
{
“label”: “Natural”,
“value”: “natural”
},
{
“label”: “450px”,
“value”: “450px”
},
{
“label”: “550px”,
“value”: “550px”
},
{
“label”: “650px”,
“value”: “650px”
},
{
“label”: “750px”,
“value”: “750px”
},
{
“label”: “Full screen”,
“value”: “100vh”
}
]
},
{
“type”: “select”,
“id”: “mobile_height”,
“label”: “Mobile height”,
“default”: “749px”,
“info”: “Not used if desktop height is set to natural”,
“options”: [
{
“label”: “749px”,
“value”: “749px”
},
{
“label”: “250px”,
“value”: “250px”
},
{
“label”: “300px”,
“value”: “300px”
},
{
“label”: “400px”,
“value”: “400px”
},
{
“label”: “500px”,
“value”: “500px”
},
{
“label”: “Full screen”,
“value”: “100vh”
}
]
},
{
“type”: “select”,
“id”: “style”,
“label”: “Slide navigation style”,
“default”: “minimal”,
“options”: [
{
“value”: “minimal”,
“label”: “Minimal”
},
{
“value”: “arrows”,
“label”: “Arrows”
},
{
“value”: “dots”,
“label”: “Dots”
}
]
},
{
“type”: “checkbox”,
“id”: “autoplay”,
“label”: “Auto-change slides”,
“default”: true
},
{
“type”: “range”,
“id”: “autoplay_speed”,
“label”: “Change images every”,
“default”: 7,
“min”: 5,
“max”: 10,
“step”: 1,
“unit”: “s”
}
],
“blocks”: [
{
“type”: “image”,
“name”: “Slide”,
“settings”: [
{
“type”: “textarea”,
“id”: “title”,
“label”: “Heading”,
“default”: “Two line\nslide title.”
},
{
“type”: “range”,
“id”: “title_size”,
“label”: “Heading text size”,
“default”: 80,
“min”: 40,
“max”: 100,
“unit”: “px”
},
{
“type”: “text”,
“id”: “subheading”,
“label”: “Subheading”,
“default”: “And an optional subheading”
},
{
“type”: “url”,
“id”: “link”,
“label”: “Slide link”
},
{
“type”: “text”,
“id”: “link_text”,
“label”: “Slide link text”,
“default”: “Optional button”
},
{
“type”: “select”,
“id”: “text_align”,
“label”: “Text alignment”,
“default”: “vertical-bottom horizontal-left”,
“options”: [
{
“value”: “vertical-center horizontal-left”,
“label”: “Center left”
},
{
“value”: “vertical-center horizontal-center”,
“label”: “Center”
},
{
“value”: “vertical-center horizontal-right”,
“label”: “Center right”
},
{
“value”: “vertical-bottom horizontal-left”,
“label”: “Bottom left”
},
{
“value”: “vertical-bottom horizontal-center”,
“label”: “Bottom center”
},
{
“value”: “vertical-bottom horizontal-right”,
“label”: “Bottom right”
}
]
},
{
“type”: “image_picker”,
“id”: “image”,
“label”: “Image”
},
{
“type”: “image_picker”,
“id”: “image_mobile”,
“label”: “Image mobile”
},
{
“type”: “select”,
“id”: “focal_point”,
“label”: “Image focal point”,
“info”: “Used to keep the subject of your photo in view.”,
“default”: “center center”,
“options”: [
{
“value”: “top left”,
“label”: “Top left”
},
{
“value”: “top center”,
“label”: “Top center”
},
{
“value”: “top right”,
“label”: “Top right”
},
{
“value”: “center left”,
“label”: “Left”
},
{
“value”: “center center”,
“label”: “Center”
},
{
“value”: “center right”,
“label”: “Right”
},
{
“value”: “bottom left”,
“label”: “Bottom left”
},
{
“value”: “bottom center”,
“label”: “Bottom center”
},
{
“value”: “bottom right”,
“label”: “Bottom right”
}
]
}
]
}
],
“presets”: [{
“name”: “Slideshow”,
“category”: “Image”,
“settings”: {
“autoplay”: true,
“autoplay_speed”: 5
},
“blocks”: [
{
“type”: “image”,
“settings”: {
“title”: “Endless\npossibilities.”,
“subheading”: “Bring your brand to life”
}
},
{
“type”: “image”,
“settings”: {
“title”: “Two line\nslide titles.”,
“subheading”: “And big, beautiful imagery”
}
}
]
}]
}
{% endschema %}