| 1 |
<!DOCTYPE html> |
| 2 |
<html lang="en"> |
| 3 |
<head> |
| 4 |
<meta charset="UTF-8"> |
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 |
<title>410 Gone — {site_name}</title> |
| 7 |
<style> |
| 8 |
/* allow-hardcoded-color: standalone front-end 410 response page; admin theme vars (--abj404-*) are admin-only and not enqueued on this raw HTTP response. Neutral palette reads on any host context. */ |
| 9 |
body{margin:0;padding:0;background:#f3f4f6;font-family:Arial,sans-serif;color:#1f2937;} |
| 10 |
.wrap{max-width:600px;margin:80px auto;background:#fff;border-radius:8px;padding:40px 48px;box-shadow:0 1px 4px rgba(0,0,0,.1);} |
| 11 |
h1{font-size:48px;font-weight:700;margin:0 0 8px;color:#111827;} |
| 12 |
h2{font-size:22px;font-weight:600;margin:0 0 16px;color:#374151;} |
| 13 |
p{font-size:15px;line-height:1.6;color:#6b7280;margin:0 0 24px;} |
| 14 |
a{color:#2563eb;text-decoration:none;} |
| 15 |
a:hover{text-decoration:underline;} |
| 16 |
</style> |
| 17 |
</head> |
| 18 |
<body> |
| 19 |
<div class="wrap"> |
| 20 |
<h1>410</h1> |
| 21 |
<h2>{heading}</h2> |
| 22 |
<p>{message}</p> |
| 23 |
<p><a href="{site_url}">← {back_home}</a></p> |
| 24 |
</div> |
| 25 |
</body> |
| 26 |
</html> |
| 27 |
|