Video
{% if section.settings.divider %}
{% endif %}
{% endif %}
{% schema %}
{
"name": "Video",
"class": "index-section",
"settings": [
{
"type": "text",
"id": "title",
"label": "Heading"
},
{
"type": "video_url",
"id": "video_url",
"label": "Video link",
"accept": ["youtube", "vimeo"]
},
{
"type": "checkbox",
"id": "divider",
"label": "Show section divider",
"default": false
}
],
"presets": [
{
"name": "Video",
"category": "Video"
}
]
}
{% endschema %}
{% if section.settings.title != blank %}
{% endif %}
{% if section.settings.divider %}{{ section.settings.title }}
{% if section.settings.video_url == blank %}
{% else %}
{% if section.settings.video_url.type == "youtube" %}
{% endif %}
{% if section.settings.video_url.type == "vimeo" %}
{% endif %}
{% endif %}