not_found_content.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. <script type="text/template" id="raw-text-original"># {{ path|path2name }}</script>
  17. {# list view #}
  18. <div class="p-t-10 active tab-pane page-list-container" id="revision-body">
  19. {% if pages.length == 0 %}
  20. <div class="m-t-20">
  21. There are no pages under <strong>{{ path }}</strong>.
  22. </div>
  23. {% endif %}
  24. {% include '../widget/page_list.html' with { pages: pages, pager: pager, viewConfig: viewConfig } %}
  25. </div>
  26. {# edit view #}
  27. <div class="edit-form tab-pane {% if req.body.pageForm %}active{% endif %}" id="edit-form">
  28. {% include '../_form.html' %}
  29. </div>
  30. </div>
  31. </div>