您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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 %}