not_found.html 895 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {% extends 'layout/2column.html' %}
  2. {% block layout_header %}
  3. {% block layout_header_before %}
  4. {% endblock %}
  5. <div class="header-wrap">
  6. <header id="page-header">
  7. <div class="flex-title-line">
  8. <div>
  9. <h1 class="title flex-item-title" id="revision-path"></h1>
  10. <div id="revision-url" class="url-line"></div>
  11. </div>
  12. </div>
  13. </header>
  14. </div>
  15. {% block layout_header_after %}
  16. {% endblock %}
  17. {% endblock %} {# /content_head #}
  18. {% block content_main_before %}
  19. {% include 'widget/page_alerts.html' %}
  20. {% endblock %}
  21. {% block content_main %}
  22. <h2 class="m-l-15 message-not-found text-muted">
  23. <i class="icon-info" aria-hidden="true"></i>
  24. Page is not found
  25. </h2>
  26. {% include 'widget/not_found_content.html' %}
  27. {% endblock %}
  28. {% block content_main_after %}
  29. {% endblock %}
  30. {% block content_footer %}
  31. {% endblock %}