{% assign items = paginator.posts | sort: 'date_modified' | reverse %}
{% for item in items limit: 1 offset:2 %}
{% if item.article_body.content.heading.image.i_image %} {% picture thumbnail_image collections/{{ item.article_body.content.heading.image.i_image }} alt="{{ item.article_body.content.heading.t_title | strip_htm }}" class="card-img" %} {% endif %}
{{ item.category | strip_html}}

{{ item.article_body.content.heading.t_title | strip_html }}

{% if item.article_body.content.heading.t_description %} {{ item.article_body.content.heading.t_description | strip_html | truncate: 180 }} {% endif %}

{{site.data.languages[page.language]global.t_read_more}}
{% assign key = page.language | append:'_articles' %} {% assign news = site[key] | sort: "date" | reverse %} {% for item in news limit: 4 %}
{% if item.article_body.content.heading.image.i_image %} {% picture thumbnail_sm collections/{{ item.article_body.content.heading.image.i_image }} alt="{{ item.article_body.content.heading.t_title | strip_htm }}" class="card-img" %} {% endif %}
{{ item.category | strip_html}}
{{ item.article_body.content.heading.t_title | strip_html }}

{% if item.article_body.content.heading.t_description %} {{ item.article_body.content.heading.t_description | strip_html | truncate: 70 }} {% endif %} {{site.data.languages[page.language]global.t_read_more}}

{% endfor %}
{% endfor %}
{% for item in items %}
{% if item.article_body.content.heading.image.i_image %} {% picture thumbnail_image collections/{{ item.article_body.content.heading.image.i_image }} alt="{{ item.article_body.content.heading.t_title | strip_htm }}" class="card-img" %} {% endif %}
{% if item.category %}
{{ item.category | strip_html}}
{% endif %} {{ item.article_body.content.heading.t_title | strip_html | truncate: 50 }} {% if item.date_modified %}
{{ item.date_modified | date: '%B %d, %Y' }}
{% endif %}

{% if item.article_body.content.heading.t_description %} {{ item.article_body.content.heading.t_description | strip_html | truncate: 200 }} {% endif %}

{% endfor %}