{{ post.title }} {% if post.created_at %} {{ post.created_at|truncate(10, True, '') }} {% endif %} {% if post.author %} {{ post.author }} {% endif %} {% if post.category %} {{ post.category.name }} {% endif %} {% if post.tags %} {% for tag in post.tags %} {{ tag }}{% if not loop.last %}, {% endif %} {% endfor %} {% endif %} {{ post.description }} {{ post.content|safe }} {% if post.tags %} Tags {% for tag in post.tags %} {{ tag }} {% endfor %} {% endif %} {% if related_posts %} You might also like {% for related in related_posts %} {{ related.title }} {{ related.description|truncate(100) }} {% endfor %} {% endif %}