{% extends "layout/base.html" %} {% block content %}

{{ post.title }}

{{ post.content|safe }} {% if post.tags | length > 0 %}

Tags: {% for tag in post.tags %} {{ tag }} {% endfor %}

{% endif %} {% endblock content %}