not_found.html 807 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {% extends 'base/not_found_nosidebar.html' %}
  2. {% block main_css_class %}
  3. main-crowi-plus-customized
  4. {% endblock %}
  5. {% block layout_header %}
  6. {% block layout_header_before %}
  7. {% endblock %}
  8. {% include 'widget/header.html' %}
  9. {% block layout_header_after %}
  10. {% endblock %}
  11. {% endblock %} {# /content_head #}
  12. {% block content_main_before %}
  13. {% include '../widget/page_alerts.html' %}
  14. {% endblock %}
  15. {% block content_main %}
  16. <div class="container-fluid">
  17. <div class="row">
  18. <div class="col-lg-10 col-md-9">
  19. <h2 class="message-not-found text-muted">
  20. <i class="icon-info" aria-hidden="true"></i>
  21. Page is not found
  22. </h2>
  23. {% include '../widget/not_found_content.html' %}
  24. </div> {# /.col- #}
  25. </div>
  26. </div>
  27. {% endblock %}