not_found_content.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. {#
  17. # Commented out temporally -- 2018.04.07 Yuki Takei
  18. # This will be fixed by https://github.com/weseek/growi/issues/324
  19. #
  20. #
  21. <script type="text/template" id="raw-text-original"># {{ path|path2name }}</script>
  22. #}
  23. {# list view #}
  24. <div class="p-t-10 active tab-pane page-list-container" id="revision-body">
  25. {% if pages.length == 0 %}
  26. <div class="m-t-20">
  27. There are no pages under <strong>{{ path }}</strong>.
  28. </div>
  29. {% endif %}
  30. {% include '../widget/page_list.html' with { pages: pages, pager: pager, viewConfig: viewConfig } %}
  31. </div>
  32. {# edit view #}
  33. <div class="edit-form tab-pane {% if req.body.pageForm %}active{% endif %}" id="edit-form">
  34. {% include '../_form.html' %}
  35. </div>
  36. </div>
  37. </div>