not_found_content.html 851 B

123456789101112131415161718192021222324252627
  1. <div id="content-main" class="content-main content-main-not-found page-list"
  2. data-path="{{ path }}"
  3. data-path-shortname="{{ path|path2name }}"
  4. data-current-user="{% if user %}{{ user._id.toString() }}{% endif %}"
  5. >
  6. {% include 'not_found_tabs.html' %}
  7. <div class="tab-content">
  8. {# list view #}
  9. <div class="p-t-10 active tab-pane page-list-container" id="revision-body">
  10. {% if pages.length == 0 %}
  11. <div class="m-t-20">
  12. There are no pages under <strong>{{ path }}</strong>.
  13. </div>
  14. {% endif %}
  15. {% include '../widget/page_list.html' with { pages: pages, pager: pager, viewConfig: viewConfig } %}
  16. </div>
  17. {# edit view #}
  18. <div class="edit-form tab-pane {% if req.body.pageForm %}active{% endif %}" id="edit-form">
  19. {% include '../_form.html' %}
  20. </div>
  21. </div>
  22. </div>