post.html 179 B

1234567891011
  1. {% extends 'base.html' %}
  2. {% block title %}文章-{{ id }}{% endblock %}
  3. {% block content %}
  4. <h1>文章-{{ id }}</h1>
  5. <hr>
  6. <p>这是文章-{{ id }}的内容</p>
  7. {% endblock %}