Skip to content

Instantly share code, notes, and snippets.

@atikju
Last active May 18, 2019 01:32
Show Gist options
  • Save atikju/5861583c563512858f34478a16b3d50f to your computer and use it in GitHub Desktop.
Save atikju/5861583c563512858f34478a16b3d50f to your computer and use it in GitHub Desktop.
Shopify - Sample Section
<div class="devTopbar center">
<p>{{ section.settings.dev-top }} <span class="devClose">X</span></p>
{% for block in section.blocks %}
{{ block.settings.block-id }}
{% endfor %}
</div>
{% schema %}
{
"name": "Top Bar",
"settings": [
{
"id": "dev-top",
"type": "text",
"label": "Top Bar Text",
"default": "CONGRATS... YOU'VE GOT YOURSELF FREE SHIPPING!"
}
],
"blocks": [
{
"type": "text",
"name": "block-id",
"settings": [
{"id": "my-block", "type": "text", "label": "My label"}
]
}
],
"presets": [
{
"category": "Text",
"name": "Top Bar"
}
]
}
{% endschema %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment