error.html 576 B

12345678910111213141516171819
  1. {% extends "base.html" %}
  2. {% block title %} 错误 {% endblock %}
  3. {% block style %}
  4. {{ super() }}
  5. <link href="{{ url_for('static', filename='styles/index/index.css') }}" rel="stylesheet">
  6. {% endblock %}
  7. {% block content %}
  8. <section id="base" class="container mt-3">
  9. <div class="row">
  10. <div class="col-12 text-center">
  11. <p><strong> {{ error_info }} </strong></p>
  12. <a class="btn btn-warning" href="{{ url_for("base.index_page") }}"> 回到主页 </a>
  13. </div>
  14. </div>
  15. </section>
  16. {% endblock %}