not_found.html 631 B

123456789101112131415161718192021222324252627282930
  1. {% extends 'base/layout.html' %}
  2. {% block content_header %}
  3. {% include 'widget/header.html' %}
  4. {% endblock %}
  5. {% block content_main_before %}
  6. {% include '../widget/page_alerts.html' %}
  7. {% endblock %}
  8. {% block content_main %}
  9. <div class="row">
  10. <div class="col-lg-10 col-md-9">
  11. {% include '../widget/not_found_content.html' %}
  12. </div> {# /.col- #}
  13. </div>
  14. {% endblock %}
  15. {% block body_end %}
  16. <div id="presentation-layer" class="fullscreen-layer">
  17. <div id="presentation-container"></div>
  18. </div>
  19. <div id="crowi-modals">
  20. {% include '../modal/select_grant_group.html' %}
  21. </div>
  22. {% endblock %}