<!DOCTYPE html>
<html lang="zh-Hans">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="noindex, nofollow">
<meta name="theme-color" content="#2563eb">
<title>{{StatusCode}} - {{Title}}</title>
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="stylesheet" href="/css/_variables.css?v=error-pages-1">
<link rel="stylesheet" href="/css/_error-pages.css?v=error-pages-1">
</head>
<body class="error-page error-page--{{Kind}}">
<main class="error-page__main">
<a class="error-page__brand" href="/" aria-label="返回首页">
<img src="/favicon.png" alt="" width="36" height="36">
<span>叫我阿胖</span>
</a>
<section class="error-page__content" aria-labelledby="error-title">
<div class="error-page__copy">
<p class="error-page__eyebrow">HTTP {{StatusCode}}</p>
<h1 id="error-title">{{Title}}</h1>
<p class="error-page__description">{{Description}}</p>
<form class="error-page__action" action="/" method="get">
<button type="submit">
<span aria-hidden="true">←</span>
返回首页
</button>
</form>
</div>
<div class="error-page__visual" aria-hidden="true">
<span class="error-page__status">{{StatusCode}}</span>
<img src="{{ImagePath}}" alt="" width="640" height="640">
</div>
</section>
<p class="error-page__trace">请求标识:{{TraceIdentifier}}</p>
</main>
</body>
</html> AI 正在分析代码…
评论加载中...