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

10 行
270 B

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