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 309B

123456789
  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 %} {{ components::post(post=post, type="index") }} {%
  6. else %} No posts yet {% endfor %}
  7. </div>
  8. {% endblock %}