Skip to content

Instantly share code, notes, and snippets.

@shopifypartners
Last active July 29, 2019 09:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shopifypartners/04a928a4e93980cdc91fc6f3d252916c to your computer and use it in GitHub Desktop.
Save shopifypartners/04a928a4e93980cdc91fc6f3d252916c to your computer and use it in GitHub Desktop.
How to Create a Customizable Logo Bar Section - https://www.shopify.com/partners/blog/logo-bar
<ul>
{% for block in section.blocks %}
<li class="logo-bar-section" {{ block.shopify_attributes }}>
{% if block.settings.link != blank %}
<a href="{{ block.settings.link }}">
{% endif %}
{% if block.settings.image != blank %}
{{ block.settings.image | img_url: '150x150', scale: 2 | img_tag: block.settings.image.alt, 'logo-bar__image' }}
{% else %}
{{ 'logo' | placeholder_svg_tag: 'placeholder-svg' }}
{% endif %}
{% if block.settings.link != blank %}
</a>
{% endif %}
</li>
{% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment