post_detail.html 330 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 {% extends 'website/base.html' %} {% block content %} <div class="post"> {% if post.published_date %} <div class="date"> {{ post.published_date }} </div> {% endif %} <h1>{{ post.title }}</h1> <p>{{ post.text|linebreaksbr }}</p> </div> {% endblock %}