In this repo i store all my websites, each in a different branch
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

7 satır
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 %}