description = "Posts Style 2" [viewBag] == {% for post in posts %}
{% if post.featuredvideo.hasVideo %}
{{ post.featuredvideo.iframe_content|raw }}
{% elseif post.featured_images.count > 1 and this.theme.blog_posts_image == 'gallery' %} {% elseif post.featured_images.count == 1 or (post.featured_images.count > 1 and this.theme.blog_posts_image == 'image') %} {% endif %}
{{ post.published_at|date('M') }} {{ post.published_at|date('d') }}
{% if post.user.avatar %} {{ post.user.avatar.file_name }} {% endif %}
    {% for category in post.categories %}
  • {{ category.name }}{% if not loop.last %}, {% endif %}
  • {% endfor %} {% if this.theme.blog_post_disqus %}
  • {% endif %}

{{ post.title }}

{{ html_limit(post.summary, 280)|raw }}

{% else %}
{{ noPostsMessage }}
{% endfor %}