not_found.html 578 B

1234567891011121314151617181920212223242526272829
  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. </div>
  21. {% endblock %}