mirror of
https://github.com/tarampampam/error-pages.git
synced 2024-08-30 18:22:40 +00:00
92 lines
3.7 KiB
HTML
92 lines
3.7 KiB
HTML
<!DOCTYPE html>
|
|
<!--
|
|
Error {{ code }}: {{ message }}
|
|
Description: {{ description }}
|
|
-->
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="robots" content="noindex, nofollow" />
|
|
<title>{{ message }}</title>
|
|
<link rel="dns-prefetch" href="//fonts.gstatic.com">
|
|
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
|
|
<style>
|
|
:root {--color-bg-primary:#fff;--color-text-primary:#636b6f;--color-text-secondary:#777}
|
|
@media (prefers-color-scheme: dark) {:root {--color-bg-primary:#222526;--color-text-primary:#fff;--color-text-secondary:#999}}
|
|
html,body {background-color:var(--color-bg-primary);color:var(--color-text-primary);font-family:'Nunito',sans-serif;font-weight:100;height:100vh;margin:0;font-size:0}
|
|
.full-height {height:100vh}
|
|
.flex-center {align-items:center;display:flex;justify-content:center}
|
|
.position-ref {position:relative}
|
|
.code {border-right:2px solid;font-size:26px;padding:0 10px 0 15px;text-align:center}
|
|
.message {font-size:18px;text-align:center;padding:10px}
|
|
/* {{ if show_details }} */
|
|
.details table {width:100%;border-collapse:collapse;box-sizing:border-box;margin-top:20px}
|
|
.details td {font-size:11px;color:var(--color-text-secondary)}
|
|
.details td.name {text-align:right;padding-right:.6em;width:50%;border-right:2px solid;border-color:#aaa}
|
|
.details td.value {text-align:left;padding-left:.6em;font-family:'Lucida Console','Courier New',monospace}
|
|
/* {{ end }} */
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="flex-center position-ref full-height">
|
|
<div>
|
|
<div class="flex-center">
|
|
<div class="code">
|
|
{{ code }}
|
|
</div>
|
|
<div class="message">
|
|
{{ message }}
|
|
</div>
|
|
</div>
|
|
{{ if show_details }}
|
|
<div class="details">
|
|
<table>
|
|
{{- if host }}<tr>
|
|
<td class="name">Host</td>
|
|
<td class="value">{{ host }}</td>
|
|
</tr>{{ end -}}
|
|
{{- if original_uri }}<tr>
|
|
<td class="name">Original URI</td>
|
|
<td class="value">{{ original_uri }}</td>
|
|
</tr>{{ end -}}
|
|
{{- if forwarded_for }}<tr>
|
|
<td class="name">Forwarded for</td>
|
|
<td class="value">{{ forwarded_for }}</td>
|
|
</tr>{{ end -}}
|
|
{{- if namespace }}<tr>
|
|
<td class="name">Namespace</td>
|
|
<td class="value">{{ namespace }}</td>
|
|
</tr>{{ end -}}
|
|
{{- if ingress_name }}<tr>
|
|
<td class="name">Ingress name</td>
|
|
<td class="value">{{ ingress_name }}</td>
|
|
</tr>{{ end -}}
|
|
{{- if service_name }}<tr>
|
|
<td class="name">Service name</td>
|
|
<td class="value">{{ service_name }}</td>
|
|
</tr>{{ end -}}
|
|
{{- if service_port }}<tr>
|
|
<td class="name">Service port</td>
|
|
<td class="value">{{ service_port }}</td>
|
|
</tr>{{ end -}}
|
|
{{- if request_id }}<tr>
|
|
<td class="name">Request ID</td>
|
|
<td class="value">{{ request_id }}</td>
|
|
</tr>{{ end -}}
|
|
<tr>
|
|
<td class="name">Timestamp</td>
|
|
<td class="value">{{ now.Unix }}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
<!--
|
|
Error {{ code }}: {{ message }}
|
|
Description: {{ description }}
|
|
-->
|
|
</html>
|