Skip to content

Instantly share code, notes, and snippets.

@geetfun
Created March 13, 2016 21:31
Show Gist options
  • Save geetfun/fe433bb63ff5bf1ebc22 to your computer and use it in GitHub Desktop.
Save geetfun/fe433bb63ff5bf1ebc22 to your computer and use it in GitHub Desktop.
Checkend Subscription Order Snippet
<!-- CheckendApps::SubscrtiptionOrder::[email protected] -->
{% assign property_size = item.properties | size %}
{% if property_size > 0 %}
{% for p in item.properties %}
{% unless p.last == blank %}
<br>
<small>
<span style="color: #999999;">
{{ p.first }}
{% if p.first == "Subscription" %}
every
{% else %}
:
{% endif %}
{% if p.last contains '/uploads/' %}
<a class="lightbox" href="{{ p.last }}">{{ p.last | split: '/' | last }}</a>
{% else %}
{{ p.last }}
{% endif %}
</span>
</small>
<br>
{% endunless %}
{% endfor %}
{% endif %}
<!-- CheckendApps::SubscrtiptionOrder::[email protected] -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment