2023-04-17 11:06:28 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2024-07-03 14:12:13 +00:00
|
|
|
<meta name="robots" content="nofollow,noarchive,noindex">
|
2023-04-17 11:06:28 +00:00
|
|
|
<title>{{ message }}</title>
|
2024-07-03 14:12:13 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<!-- {{ if or (eq code 408) (eq code 425) (eq code 429) (eq code 500) (eq code 502) (eq code 503) (eq code 504) }} -->
|
|
|
|
<meta http-equiv="refresh" content="30">
|
|
|
|
<!-- {{ end }} -->
|
|
|
|
<meta name="title" content="{{ code }}: {{ message | escape }}">
|
|
|
|
<meta name="description" content="{{ description | escape }}">
|
|
|
|
<meta property="og:title" content="{{ code }}: {{ message | escape }}">
|
|
|
|
<meta property="og:description" content="{{ description | escape }}">
|
|
|
|
<meta property="twitter:title" content="{{ code }}: {{ message | escape }}">
|
|
|
|
<meta property="twitter:description" content="{{ description | escape }}">
|
2023-04-17 11:06:28 +00:00
|
|
|
<style>
|
|
|
|
:root {
|
|
|
|
--color-bg-primary: #fff;
|
|
|
|
--color-text-primary: #22292f;
|
|
|
|
--color-text-secondary: #606f7b;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
:root {
|
|
|
|
--color-bg-primary: #212121;
|
|
|
|
--color-text-primary: #fafafa;
|
|
|
|
--color-text-secondary: #9db6cb;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
line-height: 1.15;
|
|
|
|
text-size-adjust: 100%;
|
|
|
|
box-sizing: border-box;
|
2024-07-03 14:12:13 +00:00
|
|
|
font-family: sans-serif;
|
2023-04-17 11:06:28 +00:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background-color: var(--color-bg-primary);
|
2024-07-03 14:12:13 +00:00
|
|
|
font-size: 16px;
|
2024-08-12 07:34:17 +00:00
|
|
|
word-break: keep-all;
|
2024-07-03 14:12:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 2000px) {
|
|
|
|
html, body {
|
|
|
|
font-size: 20px;
|
|
|
|
}
|
2023-04-17 11:06:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*,
|
|
|
|
*::before,
|
|
|
|
*::after {
|
|
|
|
box-sizing: inherit;
|
|
|
|
border-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2024-07-03 14:12:13 +00:00
|
|
|
height: 100%;
|
2023-04-17 11:06:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main .left, main .right {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
main .left .container {
|
2024-07-03 14:12:13 +00:00
|
|
|
max-width: 30em;
|
|
|
|
margin: 2em;
|
2023-04-17 11:06:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main .left .container .code {
|
|
|
|
color: var(--color-text-primary);
|
2024-07-03 14:12:13 +00:00
|
|
|
font-size: 3em;
|
2023-04-17 11:06:28 +00:00
|
|
|
font-weight: 900;
|
|
|
|
}
|
|
|
|
|
|
|
|
main .left .container .space {
|
2024-07-03 14:12:13 +00:00
|
|
|
width: 4em;
|
|
|
|
height: .25em;
|
2023-04-17 11:06:28 +00:00
|
|
|
background-color: #a779e9;
|
2024-07-03 14:12:13 +00:00
|
|
|
margin-top: .75em;
|
|
|
|
margin-bottom: .75em;
|
2023-04-17 11:06:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main .left .container .description {
|
|
|
|
color: var(--color-text-secondary);
|
2024-07-03 14:12:13 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
margin-bottom: 2em;
|
2023-04-17 11:06:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main .right {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
main .right .container {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
2024-07-03 14:12:13 +00:00
|
|
|
/* {{ if eq code 404 -}} */
|
2023-04-17 11:06:28 +00:00
|
|
|
/* https://github.com/LaravelCollective/errors/blob/8a0cf6fb73ba0041330967d3d6a137bd4509f7bd/src/publish/svg/404.svg */
|
|
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1024 1024'%3E%3Cdefs%3E%3ClinearGradient id='A' x1='50.31%25' x2='50%25' y1='74.74%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23ffe98a'/%3E%3Cstop offset='67.7%25' stop-color='%23b63e59'/%3E%3Cstop offset='100%25' stop-color='%2368126f'/%3E%3C/linearGradient%3E%3Ccircle id='B' cx='603' cy='682' r='93'/%3E%3Cfilter id='C' width='203.2%25' height='203.2%25' x='-51.6%25' y='-51.6%25'%3E%3CfeOffset in='SourceAlpha'/%3E%3CfeGaussianBlur stdDeviation='32'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/%3E%3C/filter%3E%3ClinearGradient id='D' x1='49.48%25' x2='49.87%25' y1='11.66%25' y2='77.75%25'%3E%3Cstop offset='0%25' stop-color='%23f7eab9'/%3E%3Cstop offset='100%25' stop-color='%23e5765e'/%3E%3C/linearGradient%3E%3ClinearGradient id='E' x1='91.59%25' x2='66.97%25' y1='5.89%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23a22a50'/%3E%3Cstop offset='100%25' stop-color='%23ee7566'/%3E%3C/linearGradient%3E%3ClinearGradient id='F' x1='49.48%25' x2='49.61%25' y1='11.66%25' y2='98.34%25'%3E%3Cstop offset='0%25' stop-color='%23f7eab9'/%3E%3Cstop offset='100%25' stop-color='%23e5765e'/%3E%3C/linearGradient%3E%3ClinearGradient id='G' x1='78.5%25' x2='36.4%25' y1='106.76%25' y2='26.41%25'%3E%3Cstop offset='0%25' stop-color='%23a22a50'/%3E%3Cstop offset='100%25' stop-color='%23ee7566'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='url(%23A)' d='M0 0h1024v1024H0z'/%3E%3Cuse fill='%23000' filter='url(%23C)' xlink:href='%23B'/%3E%3Cuse fill='%23fff6cb' xlink:href='%23B'/%3E%3Cg fill='%23fff' opacity='.3'%3E%3Ccircle cx='217' cy='278' r='3' fill-opacity='.4'/%3E%3Ccircle cx='96' cy='257' r='2'/%3E%3Ccircle cx='36' cy='287' r='2' opacity='.4'/%3E%3Ccircle cx='127' cy='88' r='3'/%3E%3Ccircle cx='216' cy='25' r='2'/%3E%3Ccircle cx='16' cy='137' r='2'/%3E%3Ccircle cx='166' cy='167' r='2'/%3E%3Ccircle cx='376' cy='247' r='2'/%3E%3Ccircle cx='467' cy='88' r='3' opacity='.4'/%3E%3Ccircle cx='527' cy='278' r='3'/%3E%3Ccircle cx='607' cy='138' r='3'/%3E%3Ccircle cx='817' cy='28' r='3' opacity='.4'/%3E%3Ccircle cx='516' cy='157' r='2'/%3E%3Ccircle cx='846' cy='227' r='2'/%3E%3Ccircle cx='766' cy='137' r='2'/%3E%3Ccircle cx='947' cy='278' r='3' opacity='.4'/%3E%3Ccircle cx='717' cy='248' r='3'/%3E%3Ccircle cx='917' cy='78' r='3'/%3E%3Ccircle cx='996' cy='167' r='2'/%3E%3Ccircle cx='646' cy='37' r='2'/%3E%3C/g%3E%3Cg transform='translate(0 550)'%3E%3Cpath fill='%238e2c15' d='M259 5.47c0 5.33 3.33 9.5 10 12.5s9.67 9.16 9 18.5h1c.67-6.31 1-11.8 1-16.47 8.67 0 13.33-1.33 14-4 .67 4.98 1.67 8.3 3 9.97 1.33 1.66 2 5.16 2 10.5h1c0-5.65.33-9.64 1-11.97 1-3.5 4-10.03-1-14.53S295 7 290 3s-10-3-13 2-5 7-9 7-5-3.53-5-5.53 2-5-1.5-5-7.5 0-7.5 2c0 1.33 1.67 2 5 2z'/%3E%3Cg fill='url(%23D)'%3E%3Cpath d='M1024 390H0V105.08C77.3 71.4 155.26 35 297.4 35c250 0 250.76 125.25 500 125 84.03-.08 160.02-18.2 226.6-40.93V390z'/%3E%3Cpath d='M1024 442H0V271.82c137.51-15.4 203.1-50.49 356.67-60.1C555.24 199.3 606.71 86.59 856.74 86.59c72.78 0 124.44 10.62 167.26 25.68V442z'/%3E%3C/g%3E%3Cg fill='url(%23E)'%3E%3Cpath d='M1024 112.21V412H856.91c99.31-86.5 112.63-140.75 39.97-162.78C710.24 192.64 795.12 86.58 856.9 86.58c72.7 0 124.3 10.6 167.09 25.63z'/%3E%3Cpath d='M1024 285.32V412H857c99.31-86.6 112.63-140.94 39.97-163L1024 285.32z'/%3E%3C/g%3E%3Cpath fill='url(%23F)' d='M0 474V223.93C67.12 190.69 129.55 155 263 155c250 0 331.46 162.6 530 175 107.42 6.71 163-26.77 231-58.92V474H0z'/%3E%3Cpath fill='url(%23E)' d='M353.02 474H0V223.93C67.12 190.69 129.55 155 263 155c71.14 0 151.5 12.76 151.5 70.5 0 54.5-45.5 79.72-112.5 109-82.26 35.95-54.57 111.68 51.02 139.5z'/%3E%3Cpath fill='url(%23G)' d='M353.02 474H0v-14.8l302-124.7c-82.26 35.95-54.57 111.68 51.02 139.5z'/%3E%3C/g%3E%3Cg fill='%23fff'%3E%3Cg opacity='.2'%3E%3Ccircle cx='538' cy='633' r='110'/%3E%3Ccircle cx='708' cy='601' r='60'/%3E%3Ccircle cx='358' cy='743' r='70'/%3E%3C/g%3E%3Cg fill-rule='nonzero' o
|
2024-07-03 14:12:13 +00:00
|
|
|
/* {{- else if eq code 503 -}} */
|
2023-04-17 11:06:28 +00:00
|
|
|
/* https://github.com/LaravelCollective/errors/blob/8a0cf6fb73ba0041330967d3d6a137bd4509f7bd/src/publish/svg/503.svg */
|
|
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1024 1024'%3E%3Cdefs%3E%3ClinearGradient id='A' x1='50.31%25' x2='50%25' y1='74.74%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23e26b6b'/%3E%3Cstop offset='50.28%25' stop-color='%23f5bcf4'/%3E%3Cstop offset='100%25' stop-color='%238690e1'/%3E%3C/linearGradient%3E%3ClinearGradient id='B' x1='50%25' x2='50%25' y1='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%238c9ce7'/%3E%3Cstop offset='100%25' stop-color='%234353a4'/%3E%3C/linearGradient%3E%3ClinearGradient id='C' x1='50%25' x2='50%25' y1='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23d1d9ff'/%3E%3Cstop offset='100%25' stop-color='%238395eb'/%3E%3C/linearGradient%3E%3Ccircle id='D' cx='622' cy='663' r='60'/%3E%3Cfilter id='E' width='260%25' height='260%25' x='-80%25' y='-80%25'%3E%3CfeOffset in='SourceAlpha'/%3E%3CfeGaussianBlur stdDeviation='32'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/%3E%3C/filter%3E%3ClinearGradient id='F' x1='49.87%25' x2='49.87%25' y1='3.62%25' y2='77.75%25'%3E%3Cstop offset='0%25' stop-color='%23b0ddf1'/%3E%3Cstop offset='100%25' stop-color='%23325c82'/%3E%3C/linearGradient%3E%3ClinearGradient id='G' x1='100%25' x2='72.45%25' y1='0%25' y2='85.2%25'%3E%3Cstop offset='0%25' stop-color='%231d3a6d'/%3E%3Cstop offset='100%25' stop-color='%23467994'/%3E%3C/linearGradient%3E%3ClinearGradient id='H' x1='49.48%25' x2='49.87%25' y1='11.66%25' y2='77.75%25'%3E%3Cstop offset='0%25' stop-color='%23b9c9f7'/%3E%3Cstop offset='100%25' stop-color='%23301863'/%3E%3C/linearGradient%3E%3ClinearGradient id='I' x1='91.59%25' x2='70.98%25' y1='5.89%25' y2='88%25'%3E%3Cstop offset='0%25' stop-color='%232d3173'/%3E%3Cstop offset='100%25' stop-color='%237f90e0'/%3E%3C/linearGradient%3E%3ClinearGradient id='J' x1='70.98%25' x2='70.98%25' y1='9.88%25' y2='88%25'%3E%3Cstop offset='0%25' stop-color='%232d3173'/%3E%3Cstop offset='100%25' stop-color='%237f90e0'/%3E%3C/linearGradient%3E%3Cpath id='K' d='M251 506a8 8 0 0 1 8 8v15l-16 1v-16a8 8 0 0 1 8-8z'/%3E%3Cpath id='L' d='M253 506.25a8 8 0 0 0-6 7.75v15.75l-4 .25v-16a8 8 0 0 1 10-7.75z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='url(%23A)' d='M0 0h1024v1024H0z'/%3E%3Cg transform='translate(211 420)'%3E%3Cpath fill='%238c9ce7' d='M65 0a2 2 0 0 1 2 2v23h-4V2c0-1.1.9-2 2-2z'/%3E%3Cpath fill='%235263b8' d='M64 24h2a3 3 0 0 1 3 3v2h-8v-2a3 3 0 0 1 3-3z'/%3E%3Cpath fill='url(%23B)' d='M65 108h40V68a40 40 0 1 0-80 0v40h40z'/%3E%3Cpath fill='%232e3d87' d='M0 118l30-6v106H0z'/%3E%3Cpath fill='%23301862' d='M60 118l-30-6v106h30z'/%3E%3Cpath fill='url(%23C)' d='M45 107V68a40.02 40.02 0 0 1 30.03-38.75C92.27 33.65 105 49.11 105 67.5V107H45z'/%3E%3Cpath fill='%234353a4' d='M15 78l50-10 2 2v108H15z'/%3E%3Cpath fill='%238c9ce7' d='M115 78L65 68v2 108h50z'/%3E%3Cpath fill='%234353a4' d='M75 118l30-6v106H75z'/%3E%3Cpath fill='%238c9ce7' d='M135 118l-30-6v106h30z'/%3E%3C/g%3E%3Cuse fill='%23000' filter='url(%23E)' xlink:href='%23D'/%3E%3Cuse fill='%23fff' xlink:href='%23D'/%3E%3Cg transform='translate(146 245)'%3E%3Cpath fill='url(%23F)' d='M169.12 450.57C192.22 464.04 143.85 532.52 24 656h649L169.12 450.57z'/%3E%3Cpath fill='url(%23G)' d='M178.5 538.5C137.83 567.17 199.67 606.33 364 656H0l178.5-117.5z'/%3E%3C/g%3E%3Cpath fill='url(%23H)' d='M1024 940H0V655.08C77.3 621.4 155.26 585 297.4 585c250 0 250.76 125.25 500 125 84.03-.08 160.02-18.2 226.6-40.93V940z'/%3E%3Cuse xlink:href='%23K' fill='%231f2a68'/%3E%3Cuse xlink:href='%23L' fill='%237c8cda'/%3E%3Cuse xlink:href='%23K' y='40' fill='%231f2a68'/%3E%3Cuse xlink:href='%23L' y='40' fill='%237c8cda'/%3E%3Cpath fill='%235263b8' d='M301 506a8 8 0 0 1 8 8v16l-16-1v-15a8 8 0 0 1 8-8z'/%3E%3Cpath fill='%23293781' d='M305 529.75V514a8 8 0 0 0-6-7.75 8.01 8.01 0 0 1 10 7.75v16l-4-.25z'/%3E%3Cg transform='translate(0 636)'%3E%3Cpath fill='url(%23H)' d='M1024 356H0V185.82c137.51-15.4 203.1-50.49 356.67-60.1C555.24 113.3 606.71.59 856.74.59 929.52.58 981.18 11.2 1024 26.26V356z'/%3E%
|
2024-07-03 14:12:13 +00:00
|
|
|
/* {{- else if eq code 403 -}} */
|
2023-04-17 11:06:28 +00:00
|
|
|
/* https://github.com/LaravelCollective/errors/blob/8a0cf6fb73ba0041330967d3d6a137bd4509f7bd/src/publish/svg/403.svg */
|
|
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1024 1024'%3E%3Cdefs%3E%3ClinearGradient id='A' x1='50%25' x2='50%25' y1='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%2376c3c3'/%3E%3Cstop offset='100%25' stop-color='%23183468'/%3E%3C/linearGradient%3E%3ClinearGradient id='B' x1='100%25' x2='0%25' y1='50%25' y2='50%25'%3E%3Cstop offset='0%25' stop-color='%23486587'/%3E%3Cstop offset='33.23%25' stop-color='%23183352'/%3E%3Cstop offset='66.67%25' stop-color='%23264a6e'/%3E%3Cstop offset='100%25' stop-color='%23183352'/%3E%3C/linearGradient%3E%3ClinearGradient id='C' x1='49.87%25' x2='48.5%25' y1='3.62%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23e0f2fa'/%3E%3Cstop offset='8.98%25' stop-color='%2389bed6'/%3E%3Cstop offset='32.98%25' stop-color='%231e3c6e'/%3E%3Cstop offset='100%25' stop-color='%231b376b'/%3E%3C/linearGradient%3E%3ClinearGradient id='D' x1='49.87%25' x2='49.87%25' y1='3.62%25' y2='77.75%25'%3E%3Cstop offset='0%25' stop-color='%23b0ddf1'/%3E%3Cstop offset='100%25' stop-color='%23325c82'/%3E%3C/linearGradient%3E%3ClinearGradient id='E' x1='91.59%25' x2='66.97%25' y1='5.89%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%231d3a6d'/%3E%3Cstop offset='100%25' stop-color='%23467994'/%3E%3C/linearGradient%3E%3ClinearGradient id='F' x1='97.27%25' x2='52.53%25' y1='6.88%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%231d3a6d'/%3E%3Cstop offset='100%25' stop-color='%23467994'/%3E%3C/linearGradient%3E%3ClinearGradient id='G' x1='82.73%25' x2='41.46%25' y1='41.06%25' y2='167.23%25'%3E%3Cstop offset='0%25' stop-color='%231d3a6d'/%3E%3Cstop offset='100%25' stop-color='%23467994'/%3E%3C/linearGradient%3E%3ClinearGradient id='H' x1='49.87%25' x2='49.87%25' y1='3.62%25' y2='100.77%25'%3E%3Cstop offset='0%25' stop-color='%23b0ddf1'/%3E%3Cstop offset='100%25' stop-color='%23325c82'/%3E%3C/linearGradient%3E%3ClinearGradient id='I' x1='100%25' x2='72.45%25' y1='0%25' y2='85.2%25'%3E%3Cstop offset='0%25' stop-color='%231d3a6d'/%3E%3Cstop offset='100%25' stop-color='%23467994'/%3E%3C/linearGradient%3E%3ClinearGradient id='J' x1='100%25' x2='62.1%25' y1='0%25' y2='68.86%25'%3E%3Cstop offset='0%25' stop-color='%23163055'/%3E%3Cstop offset='100%25' stop-color='%232f587f'/%3E%3C/linearGradient%3E%3Ccircle id='K' cx='180' cy='102' r='40'/%3E%3Cfilter id='L' width='340%25' height='340%25' x='-120%25' y='-120%25'%3E%3CfeOffset in='SourceAlpha'/%3E%3CfeGaussianBlur stdDeviation='32'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.696473053 0'/%3E%3C/filter%3E%3ClinearGradient id='M' x1='0%25' y1='50%25' y2='50%25'%3E%3Cstop offset='0%25' stop-color='%23fff' stop-opacity='0'/%3E%3Cstop offset='100%25' stop-color='%23fff'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath fill='url(%23A)' d='M0 0h1024v1024H0z'/%3E%3Cpath d='M857 508l4-1v11h-4zm-20-4l4-1v15h-4z' fill='%238dbcd2'/%3E%3Cg fill='%23183352'%3E%3Cpath d='M801 503l4 1v14h-4zm-20 4l4 1v14h-4z'/%3E%3Cpath opacity='.5' d='M820 481h2v20h-2z'/%3E%3C/g%3E%3Cpath fill='url(%23B)' d='M61 0c3 0 3 2 6 2s3-2 6-2 3 2 6 2v8c-3 0-3-2-6-2s-3 2-6 2-3-2-6-2V0z' transform='translate(761 481)'/%3E%3Cpath fill='%238dbcd2' d='M811 501l10-2v110h-60l10-100 10-2v10.92l10-.98V505l10-2v12.96l10-.98V501z'/%3E%3Cpath fill='%23183352' d='M861 507l10 2 10 100h-60V499l10 2v13.98l10 .98V503l10 2v11.94l10 .98V507z'/%3E%3Cg transform='translate(0 565)'%3E%3Cpath fill='url(%23C)' d='M1024 385H0V106.86c118.4 21.09 185.14 57.03 327.4 48.14 198.54-12.4 250-125 500-125 90.18 0 147.92 16.3 196.6 37.12V385z'/%3E%3Cg fill='url(%23D)'%3E%3Cpath d='M1024 355H0V79.56C76.46 43.81 137.14 0 285 0c250 0 301.46 112.6 500 125 103.24 6.45 166.7-10.7 239-28.66V355z'/%3E%3Cpath d='M344.12 130.57C367.22 144.04 318.85 212.52 199 336h649L344.12 130.57z'/%3E%3C/g%3E%3Cpath fill='url(%23E)' d='M0 336V79.56C76.46 43.81 137.14 0 285 0c71.14 0 86.22 26.04 32.5 82-48 50 147.33 58.02 36 136.5-40.67 28.67 21.17 67.83 185.5 117.5H0z'/%3E%3Cpath fill='url(%23F)' d='M317.5
|
2024-07-03 14:12:13 +00:00
|
|
|
/* {{- else -}} */
|
2023-04-17 11:06:28 +00:00
|
|
|
/* https://github.com/LaravelCollective/errors/blob/8a0cf6fb73ba0041330967d3d6a137bd4509f7bd/src/publish/svg/500.svg */
|
|
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1024 1024'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='50%25' x2='50%25' y1='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23F6EDAE'/%3E%3Cstop offset='100%25' stop-color='%2391D4D7'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' x1='49.87%25' x2='49.87%25' y1='3.62%25' y2='77.75%25'%3E%3Cstop offset='0%25' stop-color='%23B0DDF1'/%3E%3Cstop offset='100%25' stop-color='%23325C82'/%3E%3C/linearGradient%3E%3ClinearGradient id='c' x1='100%25' x2='72.45%25' y1='0%25' y2='85.2%25'%3E%3Cstop offset='0%25' stop-color='%231D3A6D'/%3E%3Cstop offset='100%25' stop-color='%23467994'/%3E%3C/linearGradient%3E%3ClinearGradient id='d' x1='54.81%25' x2='50%25' y1='-18.48%25' y2='59.98%25'%3E%3Cstop offset='0%25' stop-color='%23FFFFFF'/%3E%3Cstop offset='28.15%25' stop-color='%23F8E6B3'/%3E%3Cstop offset='100%25' stop-color='%23D5812F'/%3E%3C/linearGradient%3E%3ClinearGradient id='e' x1='52.84%25' x2='49.87%25' y1='2.8%25' y2='77.75%25'%3E%3Cstop offset='0%25' stop-color='%23FFFFFF'/%3E%3Cstop offset='22.15%25' stop-color='%23F8E6B3'/%3E%3Cstop offset='100%25' stop-color='%23F9D989'/%3E%3C/linearGradient%3E%3ClinearGradient id='f' x1='91.59%25' x2='66.97%25' y1='5.89%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23CE4014'/%3E%3Cstop offset='100%25' stop-color='%23FFD56E'/%3E%3C/linearGradient%3E%3ClinearGradient id='g' x1='40.28%25' x2='66.37%25' y1='30.88%25' y2='108.51%25'%3E%3Cstop offset='0%25' stop-color='%23A2491E'/%3E%3Cstop offset='100%25' stop-color='%23F4B35A'/%3E%3C/linearGradient%3E%3Ccircle id='i' cx='825' cy='235' r='70'/%3E%3Cfilter id='h' width='237.1%25' height='237.1%25' x='-68.6%25' y='-68.6%25' filterUnits='objectBoundingBox'%3E%3CfeOffset in='SourceAlpha' result='shadowOffsetOuter1'/%3E%3CfeGaussianBlur in='shadowOffsetOuter1' result='shadowBlurOuter1' stdDeviation='32'/%3E%3CfeColorMatrix in='shadowBlurOuter1' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/%3E%3C/filter%3E%3ClinearGradient id='j' x1='50%25' x2='50%25' y1='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23B29959'/%3E%3Cstop offset='100%25' stop-color='%23CEAD5B'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect width='1024' height='1024' fill='url(%23a)'/%3E%3Cpath fill='%23FFFFFF' d='M1024 378.13v39.37H790a71.59 71.59 0 0 1 21.14-50.8l1.36-1.34a31.93 31.93 0 0 1 45 0 31.93 31.93 0 0 0 45 0l15-14.9a53.21 53.21 0 0 1 75 0l22.5 22.35a21.2 21.2 0 0 0 9 5.32z' opacity='.15'/%3E%3Cg transform='translate(26 245)'%3E%3Cpath fill='url(%23b)' d='M289.12 450.57C312.22 464.04 263.85 532.52 144 656h649C448.94 514.3 280.98 445.83 289.12 450.57z'/%3E%3Cpath fill='url(%23c)' d='M262.5 402c-48 50 147.33 58.02 36 136.5-40.67 28.67 21.17 67.83 185.5 117.5H0l262.5-254z'/%3E%3Cpath fill='url(%23c)' d='M298.5 538.5C257.83 567.17 319.67 606.33 484 656H120l178.5-117.5z'/%3E%3C/g%3E%3Cpath fill='%23134F4E' d='M783 593.73a29.95 29.95 0 0 1-12-24c0-9.8 4.72-18.52 12-24-5.02 6.69-8 15-8 24 0 9.01 2.98 17.32 8 24z'/%3E%3Cg fill='%23134F4E' transform='matrix(-1 0 0 1 876 532)'%3E%3Cpath d='M24 66.73a29.95 29.95 0 0 1-12-24c0-9.8 4.72-18.52 12-24-5.02 6.69-8 15-8 24 0 9.01 2.98 17.32 8 24z'/%3E%3Cpath d='M36 22.4l-3.96-3.98a5 5 0 0 0-6.5-.5 3 3 0 0 1 3.7-3.55l8.7 2.33a8 8 0 0 1 5.66 9.8l-1-1.73a2 2 0 0 0-1.21-.93L36 22.4zm-5.38-2.56L37 26.2a8 8 0 0 1 0 11.32v-2a2 2 0 0 0-.6-1.42L26.39 24.08a3 3 0 0 1 4.24-4.24zM14.21 9.8l-3.94-3.94a2 2 0 0 0-1.42-.59h-2a8 8 0 0 1 11.32 0l6.36 6.37a3 3 0 0 1-1.22 4.98 5 5 0 0 0-3.68-5.37l-5.42-1.45zm4.9 3.39a3 3 0 1 1-1.55 5.8L3.87 15.31a2 2 0 0 0-1.52.2l-1.73 1a8 8 0 0 1 9.8-5.65l8.7 2.33z'/%3E%3C/g%3E%3Cg transform='translate(0 245)'%3E%3Cpath fill='url(%23d)' d='M1024 423.16V645H58.09c-32.12-75.17-32.12-123.84 0-146 48.17-33.24 127.17-64.25 293.33-64 166.17.25 246.67-105 413.33-105 117.33 0 183.93 55.8 259.25 93.16z'/%3E%3Cpath fill='url(%23e)' d='M1024 778H0V398.62C75.53 363.05 136.43 320 283 320c111.86 0 358.86 69.82 741 209.47V778z'/%3E%3Cpath
|
2024-07-03 14:12:13 +00:00
|
|
|
/* {{- end }} */
|
2023-04-17 11:06:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* {{ if show_details }} */
|
|
|
|
.details {
|
|
|
|
color: var(--color-text-secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
.details table {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details td {
|
|
|
|
white-space: nowrap;
|
2024-07-03 14:12:13 +00:00
|
|
|
font-size: 0.7em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details .name::first-letter,
|
|
|
|
.details .value::first-letter {
|
|
|
|
font-weight: bold;
|
2023-04-17 11:06:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.details .name {
|
|
|
|
text-align: right;
|
|
|
|
padding-right: .4em;
|
|
|
|
width: 10%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details .value {
|
|
|
|
text-align: left;
|
|
|
|
padding-left: .4em;
|
2024-07-03 14:12:13 +00:00
|
|
|
font-family: monospace;
|
2023-04-17 11:06:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* {{ end }} */
|
|
|
|
|
|
|
|
@media (min-width: 768px) {
|
|
|
|
main {
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
main .left, main .right {
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
main .left {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
main .left .container .code {
|
2024-07-03 14:12:13 +00:00
|
|
|
font-size: 9em;
|
2023-04-17 11:06:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main .left .container .space {
|
2024-07-03 14:12:13 +00:00
|
|
|
margin-top: 1.5em;
|
|
|
|
margin-bottom: 1.5em;
|
2023-04-17 11:06:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main .left .container .description {
|
2024-07-03 14:12:13 +00:00
|
|
|
font-size: 1.875em;
|
2023-04-17 11:06:28 +00:00
|
|
|
font-weight: 300;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
main .right {
|
|
|
|
display: flex;
|
|
|
|
padding-bottom: 0;
|
|
|
|
min-height: 100vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
main .right .container {
|
|
|
|
background-position: left;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 992px) {
|
|
|
|
main .right .container {
|
|
|
|
background-position: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main>
|
|
|
|
<div class="left">
|
|
|
|
<div class="container">
|
2024-07-03 14:12:13 +00:00
|
|
|
<div class="code">{{code}}</div>
|
2023-04-17 11:06:28 +00:00
|
|
|
<div class="space"></div>
|
|
|
|
<p class="description" data-l10n>{{ description }}</p>
|
|
|
|
<!-- {{ if show_details }} -->
|
|
|
|
<div class="details">
|
|
|
|
<table>
|
2024-07-03 14:12:13 +00:00
|
|
|
<!-- {{- if host -}} -->
|
2023-04-17 11:06:28 +00:00
|
|
|
<tr>
|
|
|
|
<td class="name" data-l10n>Host</td>
|
|
|
|
<td class="value">{{ host }}</td>
|
|
|
|
</tr>
|
2024-07-03 14:12:13 +00:00
|
|
|
<!-- {{- end }}{{ if original_uri -}} -->
|
2023-04-17 11:06:28 +00:00
|
|
|
<tr>
|
|
|
|
<td class="name" data-l10n>Original URI</td>
|
|
|
|
<td class="value">{{ original_uri }}</td>
|
|
|
|
</tr>
|
2024-07-03 14:12:13 +00:00
|
|
|
<!-- {{- end }}{{ if forwarded_for -}} -->
|
2023-04-17 11:06:28 +00:00
|
|
|
<tr>
|
|
|
|
<td class="name" data-l10n>Forwarded for</td>
|
|
|
|
<td class="value">{{ forwarded_for }}</td>
|
|
|
|
</tr>
|
2024-07-03 14:12:13 +00:00
|
|
|
<!-- {{- end }}{{ if namespace -}} -->
|
2023-04-17 11:06:28 +00:00
|
|
|
<tr>
|
|
|
|
<td class="name" data-l10n>Namespace</td>
|
|
|
|
<td class="value">{{ namespace }}</td>
|
|
|
|
</tr>
|
2024-07-03 14:12:13 +00:00
|
|
|
<!-- {{- end }}{{ if ingress_name -}} -->
|
2023-04-17 11:06:28 +00:00
|
|
|
<tr>
|
|
|
|
<td class="name" data-l10n>Ingress name</td>
|
|
|
|
<td class="value">{{ ingress_name }}</td>
|
|
|
|
</tr>
|
2024-07-03 14:12:13 +00:00
|
|
|
<!-- {{- end }}{{ if service_name -}} -->
|
2023-04-17 11:06:28 +00:00
|
|
|
<tr>
|
|
|
|
<td class="name" data-l10n>Service name</td>
|
|
|
|
<td class="value">{{ service_name }}</td>
|
|
|
|
</tr>
|
2024-07-03 14:12:13 +00:00
|
|
|
<!-- {{- end }}{{ if service_port -}} -->
|
2023-04-17 11:06:28 +00:00
|
|
|
<tr>
|
|
|
|
<td class="name" data-l10n>Service port</td>
|
|
|
|
<td class="value">{{ service_port }}</td>
|
|
|
|
</tr>
|
2024-07-03 14:12:13 +00:00
|
|
|
<!-- {{- end }}{{ if request_id -}} -->
|
2023-04-17 11:06:28 +00:00
|
|
|
<tr>
|
|
|
|
<td class="name" data-l10n>Request ID</td>
|
|
|
|
<td class="value">{{ request_id }}</td>
|
|
|
|
</tr>
|
2024-07-03 14:12:13 +00:00
|
|
|
<!-- {{- end -}} -->
|
2023-04-17 11:06:28 +00:00
|
|
|
<tr>
|
|
|
|
<td class="name" data-l10n>Timestamp</td>
|
2024-07-03 14:12:13 +00:00
|
|
|
<td class="value">{{ nowUnix }}</td>
|
2023-04-17 11:06:28 +00:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<!-- {{ end }} -->
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="right">
|
|
|
|
<div class="container"></div>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
2024-07-03 14:12:13 +00:00
|
|
|
<!-- {{- if l10n_enabled -}} -->
|
|
|
|
<script>// {{ l10nScript }}</script>
|
|
|
|
<!-- {{- end -}} -->
|
2023-04-17 11:06:28 +00:00
|
|
|
</body>
|
|
|
|
</html>
|