{% extends "base.html" %} {% block title %}{{ post.title }} - Simple Blog Template{% endblock %} {% block content %} {% from "components/post_renderer.html" import render_post %}

{{ post.title }}

{{ post.subtitle }}


Posted on {{ post.date }}


{{ render_post(post) }} {% if post.id == 8 %}

tree source: codepen @uchardon

{% endif %}
{{ post.content | safe }}
← 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 %}