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

8 行
201 B

{% extends "base.html" %}
{% block content %}
<div class="post">
<h2>{{post.title}}</h2>
<div class="date">{{post.date|date("d F Y")}}</div>
{{post.body | raw}}
</div>
{% endblock %}