chore: error pages
This commit is contained in:
parent
aaf506504d
commit
a026d155b7
5 changed files with 49 additions and 1 deletions
12
src/pages/errors/1000.html
Normal file
12
src/pages/errors/1000.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: Error
|
||||
description: Nah, that's no good.
|
||||
layout: default
|
||||
permalink: /1000.html
|
||||
---
|
||||
<div class="text-centered">
|
||||
<h2 class="page-header">{{ title }}</h2>
|
||||
<p>Nah, that's no good.</p>
|
||||
::CLOUDFLARE_ERROR_1000S_BOX::
|
||||
</div>
|
||||
<script>document.addEventListener('DOMContentLoaded', function () { plausible('500', { props: { path: document.location.pathname } }); });</script>
|
12
src/pages/errors/500.html
Normal file
12
src/pages/errors/500.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: Error
|
||||
description: Nah, that's no good.
|
||||
layout: default
|
||||
permalink: /500.html
|
||||
---
|
||||
<div class="text-centered">
|
||||
<h2 class="page-header">{{ title }}</h2>
|
||||
<p>Nah, that's no good.</p>
|
||||
::CLOUDFLARE_ERROR_500S_BOX::
|
||||
</div>
|
||||
<script>document.addEventListener('DOMContentLoaded', function () { plausible('500', { props: { path: document.location.pathname } }); });</script>
|
12
src/pages/errors/captcha.html
Normal file
12
src/pages/errors/captcha.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: Error
|
||||
description: Nah, that's no good.
|
||||
layout: default
|
||||
permalink: /captcha.html
|
||||
---
|
||||
<div class="text-centered">
|
||||
<h2 class="page-header">{{ title }}</h2>
|
||||
<p>Nah, that's no good.</p>
|
||||
::CAPTCHA_BOX::
|
||||
</div>
|
||||
<script>document.addEventListener('DOMContentLoaded', function () { plausible('500', { props: { path: document.location.pathname } }); });</script>
|
|
@ -8,4 +8,4 @@ permalink: /error.html
|
|||
<h2 class="page-header">{{ title }}</h2>
|
||||
<p>Nah, that's no good.</p>
|
||||
</div>
|
||||
<script>document.addEventListener('DOMContentLoaded', function () { plausible('400', { props: { path: document.location.pathname } }); });</script>
|
||||
<script>document.addEventListener('DOMContentLoaded', function () { plausible('error', { props: { path: document.location.pathname } }); });</script>
|
12
src/pages/errors/js-challenge.html
Normal file
12
src/pages/errors/js-challenge.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
title: Error
|
||||
description: Nah, that's no good.
|
||||
layout: default
|
||||
permalink: /js-challenge.html
|
||||
---
|
||||
<div class="text-centered">
|
||||
<h2 class="page-header">{{ title }}</h2>
|
||||
<p>Nah, that's no good.</p>
|
||||
::IM_UNDER_ATTACK_BOX::
|
||||
</div>
|
||||
<script>document.addEventListener('DOMContentLoaded', function () { plausible('500', { props: { path: document.location.pathname } }); });</script>
|
Reference in a new issue