feat: customize 404

This commit is contained in:
Cory Dransfeldt 2023-07-05 12:04:14 -07:00
parent b9a45b87cb
commit 0479bce1f4
No known key found for this signature in database
8 changed files with 52 additions and 35 deletions

1
.idea/.name Normal file
View file

@ -0,0 +1 @@
_redirects

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JavaScriptLibraryMappings">
<includedPredefinedLibrary name="Node.js Core" />
</component>
</project>

View file

@ -1,13 +1,22 @@
--- ---
title: Oops! Not Found title: '404'
layout: default layout: default
permalink: 404.html permalink: 404.html
--- ---
{% image './src/assets/img/404.jpg', title, 'w-full rounded-lg', '1200px' %}
<h2 <div class="text-center w-full">
class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mb-2" <h2 class="m-0 text-4xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-6xl mb-4">{{ title }}</h2>
> <h3 class="m-0 text-xl font-bold leading-tight tracking-normal dark:text-gray-200 md:text-2xl mb-6">
{{ title }} What kind of idiots do you have working here?
</h2> </h3>
<div class="flex justify-center not-prose">
Sorry, looks like there's nothing here. <a href="/">
<button class="flex flex-row items-start md:items-center font-semibold py-2 px-4 rounded-full text-white dark:text-gray-900 !bg-purple-600 dark:bg-purple-400 hover:bg-purple-500">
<span class="pt-1 md:pt-0 mr-1">
{% heroicon "outline" "receipt-percent" "Receipt" "width=20 height=20" %}
</span>
<span>Skip out on the room service bill</span>
</button>
</a>
</div>
</div>

View file

@ -0,0 +1,26 @@
<link href="/_pagefind/pagefind-ui.css" rel="stylesheet">
<style>
:root {
--pagefind-ui-font: InterVariable, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--pagefind-ui-primary: #374151;
--pagefind-ui-text: #374151;
}
@media (prefers-color-scheme: dark) {
:root {
--pagefind-ui-primary: #e5e7eb;
--pagefind-ui-text: #e5e7eb;
--pagefind-ui-background: #152028;
--pagefind-ui-border: #152028;
--pagefind-ui-tag: #152028;
}
}
</style>
<div id="search" class="search"></div>
<script src="/_pagefind/pagefind-ui.js" onload="new PagefindUI({ element: '#search', showImages: false });"></script>
<script>
if (plausible) {
document.querySelector('#search').addEventListener('focusout', (e) => {
plausible('Search', { props: { query: e.target.value }})
})
}
</script>

BIN
src/assets/img/404.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

View file

@ -17,29 +17,4 @@ meta:
image: image:
src: https://coryd.dev/assets/img/avatar.webp src: https://coryd.dev/assets/img/avatar.webp
--- ---
<link href="/_pagefind/pagefind-ui.css" rel="stylesheet"> {% include "forms/search.liquid" %}
<style>
:root {
--pagefind-ui-font: InterVariable, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--pagefind-ui-primary: #374151;
--pagefind-ui-text: #374151;
}
@media (prefers-color-scheme: dark) {
:root {
--pagefind-ui-primary: #e5e7eb;
--pagefind-ui-text: #e5e7eb;
--pagefind-ui-background: #152028;
--pagefind-ui-border: #152028;
--pagefind-ui-tag: #152028;
}
}
</style>
<div id="search" class="search"></div>
<script src="/_pagefind/pagefind-ui.js" onload="new PagefindUI({ element: '#search', showImages: false });"></script>
<script>
if (plausible) {
document.querySelector('#search').addEventListener('focusout', (e) => {
plausible('Search', { props: { query: e.target.value }})
})
}
</script>