not_found_content.html 1.3 KB

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