You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 319B

123456789101112
  1. {% extends "layout.html" %} {% block content %} {% if logged_in %}
  2. <h1 class="heading">New Post</h1>
  3. {{ components::form(action="/posts") }} {% endif %}
  4. <div class="posts">
  5. {% for post in posts %}
  6. {{ components::post(post=post, type="index") }}
  7. {% else %}
  8. No posts yet
  9. {% endfor %}
  10. </div>
  11. {% endblock %}