Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

index.html 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738
  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">
  24. {% if logged_in %}
  25. <a class="post__edit-link" href="/posts/{{ post.id }}/edit">edit</a>
  26. {% endif %}
  27. <span>
  28. {{ post.title }} :: {{ post.date }}
  29. </span>
  30. </h3>
  31. <div class="post__body">
  32. {{ post.body | safe }}
  33. </div>
  34. </div>
  35. {% endfor %}
  36. </div>
  37. {% endblock %}