user_page.html 500 B

1234567891011121314151617
  1. {% extends 'page.html' %}
  2. {% block content_head_before %}
  3. {% endblock %}
  4. {% block content_main_before %}
  5. <div class="user-page-content row">
  6. <div class="user-bookmark-list col-md-6">
  7. <h2><i class="fa fa-star"></i> Bookmarks</h2>
  8. {% include 'widget/page_list.html' with { pages: bookmarkList } %}
  9. </div>
  10. <div class="user-created-list col-md-6">
  11. <i class="fa fa-star"></i> Created
  12. {% include 'widget/page_list.html' with { pages: createdList } %}
  13. </div>
  14. </div>
  15. {% endblock %}