Last active
May 18, 2019 01:32
-
-
Save atikju/5861583c563512858f34478a16b3d50f to your computer and use it in GitHub Desktop.
Shopify - Sample Section
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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