description = "Posts Style 1" [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 %}
    {% if post.user.avatar or post.user.first_name %}
  • {% if post.user.avatar %} {{ post.user.avatar.file_name }} {% endif %} {{ post.user.first_name}}
  • {% endif %}
  • {{ post.published_at|date('M d, Y') }}
  • {% for category in post.categories %}
  • {% if loop.first %}{% endif %} {{ category.name }}{% if not loop.last %}, {% endif %}
  • {% endfor %} {% if this.theme.blog_post_disqus %}
  • {% endif %}

{{ post.title }}

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

Read more

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