user_page.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {% extends 'page.html' %}
  2. {% block content_main %}
  3. <div class="container-lg user-page">
  4. {% include '../widget/page_content.html' %}
  5. </div>
  6. {% endblock %}
  7. {% block content_footer %}
  8. {% include 'widget/comments.html' %}
  9. {% if page %}
  10. <div class="container-lg user-page-footer py-5">
  11. <div class="grw-user-page-list-m d-edit-none">
  12. <h2 class="grw-user-page-header border-bottom pb-2 mb-3" id="bookmarks-list">
  13. <i id="user-bookmark-icon"></i>
  14. Bookmarks
  15. </h2>
  16. <div class="page-list" id="user-bookmark-list">
  17. <div class="page-list-container">
  18. </div>
  19. </div>
  20. </div>
  21. <div class="grw-user-page-list-m mt-5 d-edit-none">
  22. <h2 class="grw-user-page-header border-bottom pb-2 mb-3" id="recently-created-list">
  23. <i id="recent-created-icon"></i>
  24. Recently Created
  25. </h2>
  26. <div class="page-list" id="user-created-list">
  27. <div class="page-list-container">
  28. </div>
  29. </div>
  30. </div>
  31. </div>
  32. {% endif %}
  33. <div id="page-content-footer"></div>
  34. {% endblock %}