9 lines
200 B
HTML
9 lines
200 B
HTML
|
|
{% extends 'blog/base.html' %}
|
|
|
|
{% block content %}
|
|
<h2>{{ post.title }}</h2>
|
|
<p>{{ post.content }}</p>
|
|
<p><small>By {{ post.author }} on {{ post.created_at }}</small></p>
|
|
{% endblock %}
|