Created
July 30, 2014 10:01
-
-
Save hsleewis/12517cf0c1c6effacbe8 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
{% unless shop.enabled_payment_types == empty %} | |
<h4 class="text-center">Accepted Payments</h4> | |
<ul class="inline-list payment-icons text-center"> | |
{% for type in shop.enabled_payment_types %} | |
<li> | |
<span class="icon-fallback-text"> | |
<span class="icon icon-{{type}}" aria-hidden="true"></span> | |
<span class="fallback-text">{{type | replace: '_',' '}}</span> | |
</span> | |
</li> | |
{% endfor %} | |
</ul> | |
{% endunless %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment