{% from "components/post_preview.html" import render_post %} {% extends "base.html" %} {% block title %}{{blog_title.title}}{% endblock %} {% block content %}
{% for post in posts %}

{{ post.title }}

Posted on {{ post.date }}

{{ render_post(post, post.displayall) }} {% endfor %}
{% endblock %}