{% paginate blog.articles by 3 %}
{% if current_tags %}

{{ blog.title | link_to: blog.url }} » {{ current_tags.first }}

{% else %}

{{ blog.title }}

{% endif %} {% for article in blog.articles %}
{% if blog.comments_enabled? %} {% endif %} {% if article.tags.size > 0 %} {% endif %}
{% if article.excerpt.size > 0 %} {{ article.excerpt }} {% else %}

{{ article.content | strip_html | truncatewords: 100 }}

{% endif %}
Read more
{% endfor %} {% if paginate.pages > 1 %} {% endif %}
{% endpaginate %}