{% extends "blog_base.html" %} {% load static %} {% block content %}
{% if blog.category %} {{ blog.category.title }} {% endif %} {% if blog.topic %} | {{ blog.topic.title }} {% endif %}

{{ blog.title }}

{{ blog.published_time|date:"F j, Y" }}
{{ blog.read_time }} min read
{{ processed_content|safe }}
{% if blog.authors.all %}

About the Authors

{% for author in blog.authors.all %}
{% if author.image %} {{ author.name }} {% else %} {{ author.name }} {% endif %}

{{ author.name }}

{% if author.description %}

{{ author.description }}

{% endif %} View all posts by {{ author.name }}
{% endfor %}
{% endif %}
{% if related_blogs %}

You Might Also Like

{% for related_blog in related_blogs %} {% endfor %}
{% endif %} {% endblock %}