15 lines
534 B
HTML
15 lines
534 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}服务器错误 - 500{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="empty-state">
|
|
<div class="empty-icon">⚠️</div>
|
|
<h1 style="font-size: 3rem; margin-bottom: 1rem;">500</h1>
|
|
<h2>服务器内部错误</h2>
|
|
<p>抱歉,服务器遇到了一个错误。我们会尽快修复。</p>
|
|
<a href="{{ url_for('posts.index') }}" class="btn btn-primary" style="margin-top: 2rem;">返回首页</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |