| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <div class="row not-found-message-row m-b-20">
- <div class="col-md-12">
- <h2 class="text-muted">
- <i class="icon-info" aria-hidden="true"></i>
- Page is not found
- </h2>
- </div>
- </div>
- <div id="content-main" class="content-main content-main-not-found page-list"
- data-path="{{ path }}"
- data-path-shortname="{{ path|path2name }}"
- data-current-user="{% if user %}{{ user._id.toString() }}{% endif %}"
- >
- {% include 'not_found_tabs.html' %}
- <div class="tab-content">
- {#
- # Commented out temporally -- 2018.04.07 Yuki Takei
- # This will be fixed by https://github.com/weseek/growi/issues/324
- #
- #
- <script type="text/template" id="raw-text-original"># {{ path|path2name }}</script>
- #}
- {# list view #}
- <div class="p-t-10 active tab-pane page-list-container" id="revision-body">
- {% if pages.length == 0 %}
- <div class="m-t-20">
- There are no pages under <strong>{{ path }}</strong>.
- </div>
- {% endif %}
- {% include '../widget/page_list.html' with { pages: pages, pager: pager, viewConfig: viewConfig } %}
- </div>
- {# edit view #}
- <div class="edit-form tab-pane {% if req.body.pageForm %}active{% endif %}" id="edit-form">
- {% include '../_form.html' %}
- </div>
- </div>
- </div>
|