not_found_content.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <div class="row not-found-message-row m-b-20">
  2. <div class="col-md-12">
  3. <h2 class="text-muted">
  4. <i class="icon-info" aria-hidden="true"></i>
  5. Page is not found
  6. </h2>
  7. </div>
  8. </div>
  9. <div id="content-main" class="content-main content-main-not-found page-list"
  10. data-path="{{ path }}"
  11. data-path-shortname="{{ path|path2name }}"
  12. data-current-user="{% if user %}{{ user._id.toString() }}{% endif %}"
  13. >
  14. {% include 'not_found_tabs.html' %}
  15. <div class="tab-content">
  16. {% if isEnabledAttachTitleHeader() %}
  17. <script type="text/template" id="raw-text-original"># {{ path|path2name }}</script>
  18. {% endif %}
  19. {# list view #}
  20. <div class="p-t-10 active tab-pane page-list-container" id="revision-body">
  21. {% if pages.length == 0 %}
  22. <div class="m-t-10">
  23. There are no pages under <strong>{{ path }}</strong>.
  24. </div>
  25. {% endif %}
  26. {% include '../widget/page_list.html' with { pages: pages, pager: pager, viewConfig: viewConfig } %}
  27. </div>
  28. {# edit view #}
  29. <div class="edit-form tab-pane {% if req.body.pageForm %}active{% endif %}" id="edit-form">
  30. {% include '../_form.html' %}
  31. </div>
  32. </div>
  33. </div>