{% extends "layout.html" %} {% block content %} {% if logged_in %} <h1 class="heading">New Post</h1> {{ components::form(action="/posts") }} {% endif %} <div class="posts"> {% for post in posts %} {{ components::post(post=post, type="index") }} {% endfor %} </div> {% endblock %}