{% include 'parts/header.html' %}
{% include 'parts/author_list.html' %}

New posts

{% for post in posts %}
{{ post.title }}
By {{ users.get_user_by_id(post.user_id).username }}
POST ID: {{ post.id }}

{{ post.body }}

Read post >>
{% endfor %} {% include 'parts/pagination.html' %}
{% include 'parts/footer.html' %}