{% extends "blog/base.html" %} {% load blog_tags %} {% block title %}{{ post.title }} - Blog{% endblock %} {% block meta_description %}{{ post.meta_description|default:post.excerpt|default:"Read this blog post" }}{% endblock %} {% block og_title %}{{ post.title }}{% endblock %} {% block og_description %}{{ post.meta_description|default:post.excerpt|default:"Read this blog post" }}{% endblock %} {% block twitter_title %}{{ post.title }}{% endblock %} {% block twitter_description %}{{ post.meta_description|default:post.excerpt|default:"Read this blog post" }}{% endblock %} {% block content %}
{% if post.featured_image %}
{{ post.title }}
{% endif %}

{{ post.title }}

{{ post.author.get_full_name|default:post.author.username }}
{{ post.publish_date|date:"F j, Y" }}
{{ post.content|reading_time }} min read
{% view_counter post %}
{% if post.tags.all %}
{% for tag in post.tags.all %} #{{ tag.name }} {% endfor %}
{% endif %}
{{ post.content|ckeditor_content }}

Share this post

{% get_previous_post post as previous_post %} {% if previous_post %}
Previous Post

{{ previous_post.title }}

{% endif %} {% get_next_post post as next_post %} {% if next_post %}
Next Post

{{ next_post.title }}

{% endif %}
{% if comments_enabled %}

Comments ({{ comments|length }})

{% csrf_token %}
{{ comment_form.author_name }}
{{ comment_form.author_email }}
{{ comment_form.author_website }}
{{ comment_form.content }}
{% if comments %}
{% for comment in comments %}

{{ comment.author_name }}

{{ comment.created_at|date:"M j, Y" }}

{{ comment.content|linebreaks }}

{% endfor %}
{% else %}

No comments yet. Be the first to comment!

{% endif %}
{% endif %}
{% blog_sidebar %}
{% endblock %}