| 1234567891011121314151617181920212223242526272829303132 |
- {% extends 'base/layout.html' %}
- {% block html_base_css %}not-found-page{% endblock %}
- {% block content_main_before %}
- <div
- id="growi-pagetree-not-found-context"
- data-not-found-target-path-or-id="{% if notFoundTargetPathOrId %}{{notFoundTargetPathOrId|json}}{% endif %}"
- >
- </div>
- <div
- id="growi-not-found-context"
- data-is-not-found-permalink="{% if isNotFoundPermalink %}{{isNotFoundPermalink|json}}{% endif %}"
- >
- </div>
- <div class="grw-container-convertible">
- {% include '../widget/page_alerts.html' %}
- </div>
- {% endblock %}
- {% block content_main %}
- <div class="grw-container-convertible">
- {% include '../widget/not_found_content.html' %}
- </div>
- {% endblock %}
- {% block body_end %}
- <div id="presentation-layer" class="fullscreen-layer">
- <div id="presentation-container"></div>
- </div>
- {% endblock %}
|