Created
November 8, 2017 17:29
-
-
Save wmakley/80221c753e27bf5d78e60d4a437071e9 to your computer and use it in GitHub Desktop.
Dynamically generated credit card year dropdown for Adobe Business Catalyst
This file contains 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
{% assign currentYear = globals.site.dateNow | date: "yyyy" %} | |
{% for i in (0..10) -%} | |
{% capture yearIncrement -%}{{currentYear | plus: i}}{% endcapture -%} | |
<option value="{{yearIncrement}}">{{yearIncrement}}</option> | |
{% endfor -%} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment