{% extends "base.html" %} {% block title %}{{ tag.name }} - {{ site.title }}{% endblock %} {% block content %}

Posts tagged "{{ tag.name }}"

{% for post in posts %}

{{ post.title }}

{% if post.body_html %}

{{ post.body_html | striptags | truncate(length=200) }}

{% elif post.excerpt %}

{{ post.excerpt | striptags | truncate(length=200) }}

{% endif %}
{% else %}

No posts with this tag.

{% endfor %}
{% endblock %}