not_found.html 923 B

123456789101112131415161718192021222324252627282930313233
  1. {% extends 'base/layout.html' %}
  2. {% block html_base_css %}not-found-page{% endblock %}
  3. {% block content_main_before %}
  4. <div
  5. id="growi-pagetree-not-found-context"
  6. data-not-found-target-path-or-id="{% if notFoundTargetPathOrId %}{{notFoundTargetPathOrId|json}}{% endif %}"
  7. >
  8. </div>
  9. <div
  10. id="growi-not-found-context"
  11. data-is-not-found-permalink="{% if isNotFoundPermalink %}{{isNotFoundPermalink|json}}{% endif %}"
  12. data-page-id="{%if pageId %}{{pageId.toString()}}{% endif %}"
  13. >
  14. </div>
  15. <div class="grw-container-convertible">
  16. {% include '../widget/page_alerts.html' %}
  17. </div>
  18. {% endblock %}
  19. {% block content_main %}
  20. <div class="grw-container-convertible">
  21. {% include '../widget/not_found_content.html' %}
  22. </div>
  23. {% endblock %}
  24. {% block body_end %}
  25. <div id="presentation-layer" class="fullscreen-layer">
  26. <div id="presentation-container"></div>
  27. </div>
  28. {% endblock %}