not_found.html 857 B

1234567891011121314151617181920212223242526272829303132
  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. >
  13. </div>
  14. <div class="grw-container-convertible">
  15. {% include '../widget/page_alerts.html' %}
  16. </div>
  17. {% endblock %}
  18. {% block content_main %}
  19. <div class="grw-container-convertible">
  20. {% include '../widget/not_found_content.html' %}
  21. </div>
  22. {% endblock %}
  23. {% block body_end %}
  24. <div id="presentation-layer" class="fullscreen-layer">
  25. <div id="presentation-container"></div>
  26. </div>
  27. {% endblock %}