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 %}