Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

index.html 971B

12345678910111213141516171819202122232425262728293031
  1. {% extends "layout.html" %} {% block content %}
  2. {% if logged_in %}
  3. <h1 class="heading">New Post</h1>
  4. <form class="form" method="POST" action="/posts">
  5. <input type="hidden" name="id" />
  6. <input type="hidden" name="date" />
  7. <div class="form__field">
  8. <label for="title" class="form__label">Title</label>
  9. <input class="form__text-field" type="text" name="title" required />
  10. </div>
  11. <div class="form__field">
  12. <label for="body" class="form__label">Body</label>
  13. <textarea class="form__textarea" name="body" required></textarea>
  14. </div>
  15. <div class="form__field">
  16. <input class="form__button" type="submit" value="Post" />
  17. </div>
  18. </form>
  19. {% endif %}
  20. <div class="posts">
  21. {% for post in posts %}
  22. <div class="posts__post post">
  23. <h3 class="post__heading">{{ post.title }} :: {{ post.date }}</h3>
  24. <div class="post__body">
  25. {{ post.body | safe }}
  26. </div>
  27. </div>
  28. {% endfor %}
  29. </div>
  30. {% endblock %}