{% extends 'base.html' %} {% load static %} {% block title %}{{ post.meta_title|default:post.title }} | {{ site.site_name }}{% endblock %} {% block meta_description %}{{ post.meta_description|default:post.excerpt }}{% endblock %} {% block og_title %}{{ post.title }}{% endblock %} {% block og_description %}{{ post.excerpt }}{% endblock %} {% block og_image %}{% if post.cover_image %}{{ request.scheme }}://{{ request.get_host }}{{ post.cover_image.url }}{% endif %}{% endblock %} {% block content %}
{% if post.category %} {{ post.category.name }} {% endif %}

{{ post.title }}

{% if post.author %} {{ post.author.get_full_name|default:post.author.username }} {% endif %} {{ post.published_at|date:"d M Y" }} {{ post.reading_time }} min read
{% if post.cover_image %}
{{ post.title }}
{% endif %}
{{ post.body|safe }}
{% if post.tags.all %}
Tags: {% for tag in post.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}
Share this article:
{% if related %}

More Articles

{% endif %} {% endblock %}