{% extends "base.html" %} {% block title %}{{ post.title }} - Simple Blog Template{% endblock %} {% block content %}

{{ post.title }}

{{ post.subtitle }}


Posted on {{ post.date }}


{% if post.id == 8 %}

tree source: codepen @uchardon

{% endif %}
{{ post.content | safe }}
{% if post.template} {% include post.template %} {% endif %} ← Back to Posts

Leave a Comment:


{% for comment in comments %}

{{ comment.author }} {{ comment.date }}

{{ comment.content }}
{% else %}

No comments yet. Be the first!

{% endfor %}
{% endblock %}