{% extends 'site/base.html' %} {% load static %} {% block title %} {% endblock title %} {% block css %} {% endblock css %} {% block content %}

blog details

avatar

{{ blog.author.user.name }}

{{ blog.author.user.phone }}

    {% for profile in blog.author_social_profiles %} {% if profile.name == 'Facebook' %}
  • {% elif profile.name == 'Twitter' %}
  • {% elif profile.name == 'LinkedIn' %}
  • {% elif profile.name == 'Pinterest' %}
  • {% elif profile.name == 'Instagram' %}
  • {% endif %} {% endfor %}

{{ blog.author.bio }}

{% if prev_blog %} {% endif %}
{% if next_blog %} {% endif %}

{{ blog.comments.count }} Comments

    {% for comment in comments %}
  • {{ comment.user.name }}
    {{ comment.user.name }} {{ comment.created_at|date:"F d, Y" }}

    {{ comment.text }}

    {% csrf_token %}
      {% for reply in comment.reply_set.all %}
    • {{ reply.user.name }}
      {{ reply.user.name }} {{ reply.created_at|date:"F d, Y" }}

      {{ reply.text }}

    • {% endfor %}
  • {% endfor %}
{% csrf_token %}

post comment

{% include 'site/includes/newsletter.html' %} {% endblock content %} {% block js %} {% endblock js %}