12 lines
462 B
HTML
12 lines
462 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}500 - 服务器错误{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="repo-container repo-text-center repo-py-10">
|
|
<span style="font-size: 6rem;">⚠️</span>
|
|
<h1 class="repo-text-2xl repo-font-bold repo-mt-4">500</h1>
|
|
<p class="repo-text-secondary repo-mt-2">服务器内部错误</p>
|
|
<a href="{{ url_for('index') }}" class="repo-btn repo-btn--primary repo-mt-6">返回首页</a>
|
|
</div>
|
|
{% endblock %} |