123456789101112 |
- {% 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") }}
- {% else %}
- No posts yet
- {% endfor %}
- </div>
- {% endblock %}
|