Files
SWebStatic/layouts/404.html
T

12 lines
371 B
HTML
Raw Normal View History

{{ define "body" }}
<section class="error-page">
<div class="error-content">
<img src="{{ .Site.Params.logo }}" alt="Logo" class="error-logo" width="120" height="120">
<h1>404</h1>
<p>请求的页面未找到</p>
<p class="error-hint">请检查 URL 是否正确</p>
<a href="/" class="btn btn-primary">返回主页</a>
</div>
</section>
{{ end }}