You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

components.html 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {% macro post(post, type) %}
  2. <div class="post">
  3. <div class="post__heading">
  4. <div class="post__title">
  5. <span class="post__date">:: {{ post.date }} //</span>
  6. <a class="post__link" href="/posts/{{ post.id }}">
  7. {{ post.title }}
  8. </a>
  9. </div>
  10. {% if logged_in %}
  11. <div class="post__meta">
  12. <a class="post__link" href="/posts/{{ post.id }}/edit">edit</a>
  13. <span class="post__link danger" data-delete="{{ post.id }}">delete</span>
  14. </div>
  15. {% endif %}
  16. </div>
  17. {% if type != "index" %}
  18. <div class="post__body">
  19. {{ post.html | safe }}
  20. </div>
  21. {% endif %}
  22. </div>
  23. {% endmacro %}
  24. {% macro form(post=false, action) %}
  25. <form class="form" method="POST" action="{{ action }}" id="post-form">
  26. <input
  27. type="hidden"
  28. name="id"
  29. value="{% if post %}{{ post.id }}{% endif %}"
  30. />
  31. <input
  32. type="hidden"
  33. name="date"
  34. value="{% if post %}{{ post.date }}{% endif %}"
  35. />
  36. <input type="hidden" name="html" />
  37. <div class="form__field">
  38. <label for="title" class="form__label">Title</label>
  39. <input
  40. class="form__text-field"
  41. type="text"
  42. name="title"
  43. required
  44. value="{% if post %}{{ post.title }}{% endif %}"
  45. />
  46. </div>
  47. <div class="form__field">
  48. <label for="body" class="form__label">Body</label>
  49. <textarea
  50. class="form__textarea"
  51. name="body"
  52. required
  53. >{% if post %}{{ post.body }}{% endif %}</textarea>
  54. </div>
  55. <div class="form__field">
  56. <a class="btn" href="#" data-preview>Preview</a>
  57. <input class="btn" type="submit" value="Post" />
  58. </div>
  59. </form>
  60. {% endmacro %}