Created
January 21, 2020 20:48
-
-
Save AaronGoldsmith/3dd72bfd10f9d8aa45cba6cf06f7d4e6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<ul class="payment-icons list--inline site-footer__icon-list"> | |
{% assign enabled_payment_types = 'clearpay,afterpay,visa, master,american_express,paypal' | remove: ' ' | split: ',' %} | |
{% for type in enabled_payment_types %} | |
<li class="payment-icon"> | |
{{ type | payment_type_svg_tag: class: 'icon icon--full-color' }} | |
</li> | |
{% endfor %} | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment