not_found.html 543 B

1234567891011121314151617181920212223242526
  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. <h2 class="message-not-found text-muted m-b-20">
  12. <i class="icon-info" aria-hidden="true"></i>
  13. Page is not found
  14. </h2>
  15. {% include '../widget/not_found_content.html' %}
  16. </div> {# /.col- #}
  17. </div>
  18. {% endblock %}