Hi all,
I have been scratching my head around the best way to approach this design, I have a block which is limited to 3 but in the for loop, I have been trying to do some conditional logic to count the first block coming out, then I need to wrap the other two blocks in a div so we have a 60 / 40 Flex on the two-child divs.
What’s the best way to approach this with liquid? I have tried like so but everything is coming out as “full_width”
{% assign count = 0 %}
{% for block in section.blocks %}
{% assign count = count | plus: 1 %}
{% assign full_width = "full_width" %}
{% assign fifty = "fifty" %}
{% if count > 0 %}
{{full_width}}
{% else count > 1 %}
{{fifty}}
{% endif %}
My element with counter class
{% endfor %}
