{% extends 'portfolio/base.html' %} {% block title %}{{ post.title }} - ChrisDev Blog{% endblock %} {% block content %}
Home Blog {{ post.title }}
{{ post.category.name }} {{ post.published_date|date:"F d, Y" }} {{ post.read_time }} min read {{ post.views }} views

{{ post.title }}

{{ post.title }}
{{ post.content|linebreaks }}
{% if post.tags %}

Tags

{% for tag in post.get_tags_list %} {{ tag }} {% endfor %}
{% endif %}

Share this post

Comments ({{ comments.count }})

Leave a Comment

{% csrf_token %}
{% if comments %}
{% for comment in comments %}

{{ comment.name }}

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

{{ comment.comment }}

{% endfor %}
{% else %}

No comments yet. Be the first to comment!

{% endif %}
{% if related_posts %}

Related Posts

{% endif %} {% endblock %}