Advertisement
Guest User

Untitled

a guest
Dec 10th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. <div id="col-main" class="center-column content-without-background collection-page{% if settings.sb_collection_placement != '' %} col-md-9{% else %} col-md-12{% endif %} col-sm-12{% if settings.shop_pagination != '' %} hide-pagination{% endif %}">
  2. <div id="mfilter-content-container" class="{%- if settings.collection_list_grid == '0' -%}list{%- else -%}grid{%- endif -%}">
  3. {%- if collection.image or collection.description != blank -%}
  4. <div class="category-info clearfix">
  5. {%- if collection.image -%}<div class="image"><img src="{{collection.image | img_url: 'small'}}" alt="{{collection.title | escape}}" /></div>{%- endif -%}
  6. {%- if collection.description -%}{{collection.description}}{%- endif -%}
  7. </div>
  8. {%- endif -%}
  9. {%- include 'collection-filter' -%}
  10. <div id="sandbox">
  11. {%- if collection.products.size > 0 -%}
  12. <div class="product-list products">
  13. {%- for product in collection.products -%}
  14. {%- include 'product-item2' -%}
  15. {%- endfor -%}
  16. </div>
  17. {%- if settings.ctemplate_type == "promo" -%}
  18. <div class="product-grid products">
  19. <div class="row">
  20. {%- for product in collection.products -%}
  21. <div class="col-sm-4 col-xs-6 product-item">
  22. {%- include 'product-item' -%}
  23. </div>
  24. {%- endfor -%}
  25. </div>
  26. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement