Skip to content

Instantly share code, notes, and snippets.

View amabes's full-sized avatar
🎯
Focusing

Alan Mabry amabes

🎯
Focusing
View GitHub Profile
@amabes
amabes / .babelrc
Created April 17, 2018 23:47 — forked from thejmazz/.babelrc
async/await with webpack+babel
{
"presets": ["es2015"],
"plugins": ["transform-async-to-generator"]
}
@amabes
amabes / accessories.liquid
Last active March 2, 2017 23:52 — forked from carolineschnapp/related-products.liquid
Products from Collection — to add to product.liquid
<!-- Forked from Caroline Schnapp -->
<!-- See this: https://docs.shopify.com/support/your-store/products/can-i-recommend-related-products#finding-a-relevant-collecitons -->
{% assign heading = 'Accessories' %}
{% assign collection_handle = 'Accessories' %}
{% assign same_vendor = false %} {% comment %} Make search more strigent {% endcomment %}
{% assign same_type = false %} {% comment %} Make search more strigent {% endcomment %}
{% assign collection = collections[:collection_handle] %}
{% assign found_a_collection = false %}