Created
November 20, 2019 23:40
-
-
Save iamkeir/7b79c8fdbc4d2fb95ae2fd5c5dae5842 to your computer and use it in GitHub Desktop.
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
{% comment %}SECTION{% endcomment %} | |
{% | |
include 'hero' | |
hero_title: section.settings.title | |
%} | |
{% schema %} | |
{ | |
"name": "Product hero", | |
"settings": [ | |
{ | |
"type": "text", | |
"id": "title", | |
"label": "Hero title" | |
} | |
] | |
} | |
{% endschema %} |
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
{% assign hero_title = hero_title | default: 'Some title' %} | |
<div class="hero"> | |
<div class="hero__item"> | |
<h2 class="hero__item__title">{{ hero__title }} | |
</div> | |
</div><!--/hero--> | |
{% assign hero_title = blank %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment