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

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