{% extends "base.html" %} {% load static %} {% load custom_tags %} {% block title %} {{ post.title }} | {% env 'PROJECT_NAME' %} {% endblock title %} {% block description %} Read "{{ post.title }}" by {{ post.author }}. Published on {{ post.created_at }}. Explore this and more on {% env 'PROJECT_NAME' %}. {% endblock description %} {% block keywords %} {{ post.title }}, blog post, {{ post.author }}, {% env 'PROJECT_NAME' %}, {{ post.created_at }}, {{ post.title|slugify }} {% endblock keywords %} {% block og_title %} {{ post.title }} - {% env 'PROJECT_NAME' %} {% endblock og_title %} {% block og_description %} Discover "{{ post.title }}" by {{ post.author }} on {% env 'PROJECT_NAME' %}. Published on {{ post.created_at }}, dive into the content to learn more! {% endblock og_description %} {% block content %} {% include "includes/sidenav.html" %}

{{ post.title }}

By {{ post.author }} on {{ post.created_at }}

{{ post.content|safe }}
{% if post.image %}
{{ post.title }}
{% endif %} {% if request.user == post.author %} {% endif %}
{% include "../comments2.html" %}
{% endblock content %}