django_md_blog/blog/templates/blog/post_detail.html

11 lines
308 B
HTML

{% extends 'blog/base.html' %}
{% block content %}
<h2>{{ post.title }}</h2>
<p><small>Updated at: {{ post.updated_at }}</small></p>
<p>{{ post.content }}</p>
<p><small>By {{ post.author }} on {{ post.created_at }}</small></p>
{% endblock %}
<a href="{% url 'home' %}">Back to Home</a>