{% extends "stardate/base_stardate.html" %} {% block title %}{{ post.title }}{% endblock %} {% block page %} {% block breadcrumbs %} {% include 'stardate/includes/breadcrumbs.html' %} {% endblock breadcrumbs %} {% block content_title %} {% load tz %}

{{ post.title }}

{% if post.publish %} {% timezone post.timezone %} {% endtimezone %} {% endif %} {% if request.user == post.blog.user %}
  • Edit post
  • {% endif %} {% endblock content_title %} {% block content %} {{ post.body }} {% endblock content %} {% block pagination %} {% if post.get_prev_post %}

    Previous: {{ post.get_prev_post.title }}

    {% endif %} {% if post.get_next_post %}

    Next: {{ post.get_next_post.title }}

    {% endif %} {% endblock pagination %} {% endblock page %}