選択できるのは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 %}