| 123456789101112131415161718192021222324252627282930313233 |
- {% 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 %}"
- data-page-id="{%if pageId %}{{pageId.toString()}}{% 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 %}
|