description = "Posts Style 3"
[viewBag]
==
{% set aos = ['fade-right', 'fade-down', 'fade-left', 'fade-right', 'fade-up', 'fade-left'] %}
{% for post in posts %}
{% set img = ['500', '900', '500', '700', '1200', '400'] %}
{% if post.featuredvideo.hasVideo %}
{{ post.featuredvideo.iframe_content|raw }}
{% elseif post.featured_images.count > 1 and this.theme.blog_posts_image == 'gallery' %}
{% for image in post.featured_images %}
{% endfor %}
{% for image in post.featured_images %}
{% endfor %}
Previous
Next
{% elseif post.featured_images.count == 1 or this.theme.blog_posts_image == 'image' %}
{% endif %}
{{ post.published_at|date('M d, Y') }}
{% if this.theme.blog_post_disqus %}
{% endif %}
{{ html_limit(post.summary, 280)|raw }}
{% if post.user.avatar %}
By {{ post.user.first_name}}
{% endif %}
{% for category in post.categories %}
{{ category.name }}{% if not loop.last %}, {% endif %}
{% endfor %}
{% else %}