not_found.html 395 B

1234567891011121314151617181920
  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 %}