description = "Blog 3 Section" [viewBag] [blogPosts latestPosts] pageNumber = "{{ :page }}" postsPerPage = 5 noPostsMessage = "No posts found" sortOrder = "published_at desc" categoryPage = "blog/blog-category" postPage = "blog/blog-post" ==
{% if data.section_blog3_header or data.section_blog3_subheader %}

{{ data.section_blog3_header }}

{{ data.section_blog3_subheader }}
{% endif %}
{% set aos = ['flip-left', 'flip-up', 'flip-right', 'flip-down', 'flip-left'] %} {% set posts = latestPosts.posts %} {#{% if data.section_blog3_type == 'latest' %}{% set posts = latestPosts.posts %}{% else %}{% set posts = topPosts.mostVisitedPosts %}{% endif %}#} {% for post in posts %} {% if data.section_blog3_position == 'left' %} {% if loop.index0 == 1 %}
{% endif %} {% elseif data.section_blog3_position == 'center' %} {% if loop.index0 == 0 or loop.index0 == 3 %}
{% endif %} {% elseif data.section_blog3_position == 'right' %} {% if loop.index0 == 0 %}
{% endif %} {% endif %}
{% if post.featuredvideo.hasVideo %}
{{ post.featuredvideo.iframe_content|raw }}
{% elseif post.featured_images.count == 1 or (data.section_blog3_carousel == '0' and post.featured_images.count > 1) %} {% elseif data.section_blog3_carousel and post.featured_images.count > 1 %} {% elseif post.featuredvideo.hasVideo %}
{{ post.featuredvideo.iframe_content|raw }}
{% endif %}
{% if data.section_blog3_type == 'latest' and data.section_blog3_category %} {% for category in post.categories %} {{ category.name }}{% if not loop.last %}, {% endif %} {% endfor %} {% endif %} {% if data.section_blog3_date %} {{ post.published_at|date('M d, Y') }} {% endif %}
{{ post.title }}
{% if data.section_blog3_desc %}

{% if (data.section_blog3_position == 'left' and loop.index0 == 0) or (data.section_blog3_position == 'center' and loop.index0 == 2) or (data.section_blog3_position == 'right' and loop.index0 == 4) %} {{ html_limit(post.content_html, 400)|raw }} {% else %} {{ html_limit(post.summary, 48)|raw ~ '…' }} {% endif %}

{% endif %}
{% if data.section_blog3_position == 'left' %} {% if loop.last %}
{% endif %} {% elseif data.section_blog3_position == 'center' %} {% if loop.index0 == 1 or loop.last %}
{% endif %} {% elseif data.section_blog3_position == 'right' %} {% if loop.index0 == 3 %}
{% endif %} {% endif %} {% else %}
{{ noPostsMessage }}
{% endfor %}