i've assigned a variable in liquid and can't figure out how to output the value in a {% cycle %}
was looking for the syntax on Google/Shopify cheatsheet/liquid Github wiki and can't seem to find anything that works
is this possible?
i was trying
{% assign col_suffix = 50 %}
{% for article in articles %}
{% cycle 'row': '<div class="col-container>', '', '<div class="col-container>', '' %}
{% cycle 'col': '<div class="col-{{ col_suffix }}"></div>', '<div class="col-{{ col_suffix }}"></div>' %}
{% cycle 'row': '</div>', '', '</div>', '' %}
{% endfor %}
or various combinations by splitting it on the quotes but no luck
any help is appreciated!