Last active
August 4, 2021 15:17
-
-
Save scotchi/d8985d927064d74a8367be8e1b4932a9 to your computer and use it in GitHub Desktop.
Example Directed Edge recommendation style for Shopify's "Debut" theme
This file contains 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="page-width"> | |
{%- for group in groups -%} | |
<div class="product-recommendations__inner"> | |
<div class="section-header text-center"> | |
<h2>{{ group.label }}</h2> | |
</div> | |
<ul class="grid grid--uniform grid--view-items"> | |
{%- for product in group.products -%} | |
<li class="grid__item small--one-half medium-up--one-quarter"> | |
{% include 'product-card-grid', max_height: 250, product: product, show_vendor: false %} | |
{%- endfor -%} | |
</ul> | |
</div> | |
{% endfor %} | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment