{% extends 'theme/base.html' %} {% load static %} {% block title %}{{ post.title }} - AL WASAY Blog{% endblock %} {% block content %}
Blog Header
{% if post.category %} {{ post.category.name }} {% endif %} {{ post.published_at|date:"F d, Y" }}

{{ post.title }}

{{ post.author.first_name.0 }}{{ post.author.last_name.0 }}

{{ post.author.get_full_name }}

{{ post.reading_time }} min read {{ post.views_count }} views
Share:
{% if post.featured_image %}
{{ post.title }}
{% endif %}
{% if post.excerpt %}

{{ post.excerpt }}

{% endif %}
{{ post.content|safe }}
{% if post.tags.exists %}
Tags: {% for tag in post.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}
{% if related_posts %}
{% endif %} {% endblock %}