{% if blocks is defined and blocks['cms_snippets'] is defined and blocks['cms_snippets']|length > 0 %} {% set counter = 1 %} {% set total = blocks['cms_snippets']|length %} {% for block in blocks['cms_snippets'] %} {% set alignClass = 'fade-left' %} {% set orderClass = 'me-auto' %} {% if counter is odd %} {% set alignClass = 'fade-right' %} {% set orderClass = 'ms-auto order-2' %} {% endif %} {% set summaryDots = '' %} {% set pageContent = block.content|default("")|raw|replace({' ':' '}) %} {% if pageContent|striptags|length > 500 %} {% set summaryDots = '...' %} {% endif %}

{{ block.title }}

{{ pageContent|striptags|slice(0, 500) ~ summaryDots }}

{% if block.link is not null %} Read More {% else %} Read More {% endif %}

{% if block.imagePath is not null %} Content Image Removed {% endif %}
{% set counter = counter + 1 %} {% endfor %} {% endif %}