{% extends 'base.html' %} {% block title %}{{ post.title }} · Django 实战博客{% endblock %} {% block content %}

{{ post.title }}

{{ post.author.username }} · {{ post.created_at|date:'Y-m-d H:i' }}

{{ post.body|linebreaks }}

{% for tag in post.tags.all %}#{{ tag.name }} {% endfor %}

{% endblock %}