Kriuchko
3/25/2019 - 10:32 AM

*Section* - Simple sections


\!h Theme sections 
https://help.shopify.com/en/themes/development/sections#default

{% if section.settings.image_banner != blank %}

  <div class="hero-img" style="background-image:url({{ section.settings.image_banner | img_url: 'master' }})">
    <div class="hero-img__hold"></div>
  </div>

{% endif %}

{% schema %}
  {
    "name": "Home banner",
    "class": "home-header-banner",
    "settings": [
      {
        "type": "image_picker",
        "id": "image_banner",
        "label": "Banner"
      }
    ],
    "presets": [
      {
        "name": "Home banner",
        "category": "Custom"
      }
    ]
  }
{% endschema %}
{% if section.settings.footer_logo != blank %}
    <div class="site-footer__logo">
        {% if section.settings.footer_logo %}
            <a href="/"><img src="{{ section.settings.footer_logo | img_url: 'master' }}" alt="{{ shop.name }}"></a>
        {% endif %}
    </div>
{% endif %}

<div class="footer-hold">

    <div class="footer-nav">
        {% if section.settings.footer_menu %}
            <nav class="small--hide footer-menu">
                {% include 'site-nav', menu: section.settings.footer_menu  %}
            </nav>
        {% endif %}

        {% include 'social-networks' %}
    </div>

    {% if section.settings.copyright %}<div class="copyright">{{ section.settings.copyright }}</div>{% endif %}

</div>

{% schema %}
{
    "name": "Footer",
    "settings": [
        {
            "type": "image_picker",
            "id": "footer_logo",
            "label": "Logo"
        },
        {
            "type": "link_list",
            "id": "footer_menu",
            "label": "Footer menu"
        },
        {
            "type": "text",
            "id": "copyright",
            "label": "Copyright"
        }
    ]
}
{% endschema %}