Files
news-tracker/templates/404.html
T

9 lines
294 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}404{% endblock %}
{% block content %}
<div class="empty" style="padding:80px;text-align:center;">
<div style="font-size:48px;">🕳️</div>
<h2>页面不存在</h2>
<a class="btn" href="/dashboard">← 返回仪表盘</a>
</div>
{% endblock %}