您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. {%- block title -%}Not Found{%- endblock -%}
  2. {%- block header -%}
  3. <h2 class="text-danger"><i class="icon-exclamation-sign"></i> Page missing or moved</h2>
  4. {%- endblock -%}
  5. {% block content %}
  6. <div class="404-content">
  7. <div class="panel panel-default">
  8. <div class="panel-body">
  9. <p>We are very sorry for this, but the page you are looking for is missing
  10. (this could be because of a typo in the address) or moved.</p>
  11. </div>
  12. </div>
  13. </div>
  14. {% endblock %}