In this repo i store all my websites, each in a different branch
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

7 行
201 B

  1. {% extends "base.html" %}
  2. {% block content %}
  3. <div class="post">
  4. <h2>{{post.title}}</h2>
  5. <div class="date">{{post.date|date("d F Y")}}</div>
  6. {{post.body | raw}}
  7. </div>
  8. {% endblock %}