{% for article in blog.articles %}
{% endfor %}
{{ article.title }}
{% if article.excerpt.size > 0 %} {{ article.excerpt }} {% else %}
{{ article.content | strip_html | truncatewords: 100 }}
{% endif %}{% if blog.all_tags.size > 0 %}
{% endif %}
{{ 'blogs.article.tags' | t }}
- {{ 'blogs.article.all_tags' | t }} {% for tag in blog.all_tags %} {% if current_tags contains tag %}
- {{ tag }} {% else %}
- {{ tag | link_to_tag: tag }} {% endif %} {% endfor %}
{{ paginate | default_pagination | replace: '« Previous', '←' | replace: 'Next »', '→' }}
{% endif %} {% endpaginate %}