{% extends 'base.html' %} {% block extra_head %} {% include "includes/social.html" %} {% endblock %} {% block main %}
{% for tag in post.tags %} {{ tag|title }} {% endfor %}
{{ post.read_time }} min read

{{ post.title }}

{{ post.description }}

{% if post.cover_image %}
{{ post.title }}
{% endif %}
Isaac Bythewood Isaac Bythewood
{{ post.date }}
{{ post.body_html|safe }}
{% if related_posts %}

Some posts in similar tags to this one.

{% for blog_post in related_posts %}
{% include "includes/blog_post_card.html" %}
{% endfor %}
{% endif %} {% endblock %}