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
<!-- /sections/index-page-full.liquid --> | |
<div class="homepage-page {{ section.settings.homepage_page_color }}" data-section-id="{{ section.id }}" data-section-type="index-page"> | |
{% for block in section.blocks %} | |
<div class="grid"> | |
{% case block.type %} | |
{% when 'page' %} | |
{% if block.settings.home_page_content != blank %} | |
{% assign page = pages[block.settings.home_page_content] %} |
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
{% section 'collection-custom' %} | |
{% section 'collection-no-banner' %} |
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
{%- if section.settings.image -%} | |
{%- assign background_image = section.settings.image | img_url: '1800x' -%} | |
{%- else -%} | |
{%- assign background_image = 'blank.svg' | asset_url -%} | |
{%- endif -%} | |
<div class="homepage-image preventOverflow {{ section.settings.height }} {{ section.settings.color }}" data-section-id="{{ section.id }}" data-section-type="banner" {% if section.settings.parallax %}data-img-src="{{ background_image }}"{% endif %}> | |
{% if section.settings.link_text == '' and section.settings.link and section.settings.button_image == nil %} | |
<a href="{{ section.settings.link }}"> | |
{% endif %} | |
<div class="content--centered"> |
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
{% paginate collection.products by 48 %} | |
{% if collection.image %}<div class="collection-image" style="background-image: url('{{ collection.image | img_url: '2048x2048' }}');"> {% endif %} | |
<div class="collection-title text-center"> | |
<div class="grid"> | |
<h1 class="collection-text--headline title grid__item one-whole">{{ collection.title }}</h1> | |
</div> | |
</div> | |
{% if collection.image %}<div class="collection-image-overlay"></div> | |
</div> |
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
{% paginate collection.products by 48 %} | |
{% if collection.image %}<div class="collection-image" style="background-image: url('{{ collection.image | img_url: '2048x2048' }}');"> {% endif %} | |
<div class="collection-title text-center"> | |
<div class="grid"> | |
<h1 class="collection-text--headline title grid__item one-whole">{{ collection.title }}</h1> | |
</div> | |
</div> | |
{% if collection.image %}<div class="collection-image-overlay"></div> | |
</div> |
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
<!-- /snippets/product.liquid --> | |
{% if product.template_suffix contains "charge-rabbit" %} | |
{% assign form_action = product.metafields.charge_rabbit.subscribe_path %} | |
{% assign form_method = 'get'%} | |
{% assign form_class = "charge-rabbit-product" %} | |
{% assign include_customer_id = true %} | |
{% assign membership_product = true %} | |
{% else %} | |
{% assign form_action = '/cart/add' %} | |
{% assign form_method = 'post'%} |
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
<!-- /sections/collection.liquid --> | |
{%- assign grid_offset = '' -%} | |
{%- assign products_count = collection.products_count -%} | |
{%- case section.settings.grid_setting_large -%} | |
{%- when 1 -%} | |
{%- assign grid_width_large = 'large--one-whole' -%} | |
{%- when 2 -%} | |
{%- assign grid_width_large = 'large--one-half' -%} | |
{%- if products_count == 1 -%} |
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
<!-- /snippets/product.liquid --> | |
{% if product.template_suffix contains "charge-rabbit" %} | |
{% assign form_action = product.metafields.charge_rabbit.subscribe_path %} | |
{% assign form_method = 'get'%} | |
{% assign form_class = "charge-rabbit-product" %} | |
{% assign include_customer_id = true %} | |
{% assign membership_product = true %} | |
{% else %} | |
{% assign form_action = '/cart/add' %} | |
{% assign not_for_sale = 0 %} |