Compare commits

...

2 Commits

Author SHA1 Message Date
4668473293 Updated projects
All checks were successful
Build Site / Build-Site (18.x) (push) Successful in 58s
2023-08-06 10:45:06 -04:00
0ad815d516 Updated themeing on 404 page 2023-08-06 10:43:31 -04:00
3 changed files with 20 additions and 8 deletions

View File

@ -4,7 +4,7 @@
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" /> <meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" /> <link rel="icon" type="image/svg+xml" href="/icon-512.png" />
<meta name="generator" content={Astro.generator} /> <meta name="generator" content={Astro.generator} />
<title>thomaspcole.com | 404</title> <title>thomaspcole.com | 404</title>
@ -25,22 +25,25 @@
} }
</style> </style>
<script is:inline> <script is:inline>
if (localStorage.getItem("theme") === null) { if (!('theme' in localStorage)) {
document.documentElement.setAttribute("data-theme", "business"); localStorage.setItem("theme", "light")
}
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
document.documentElement.classList.add('dark')
} else { } else {
document.documentElement.setAttribute("data-theme", localStorage.getItem("theme")); document.documentElement.classList.remove('dark')
} }
</script> </script>
</head> </head>
<body class="w-full h-screen"> <body class="w-full h-screen bg-white dark:bg-gray-900">
<div class="flex flex-col w-full h-screen text-center place-content-center"> <div class="flex flex-col w-full h-screen text-center text-gray-900 place-content-center dark:text-white">
<h1 class="text-5xl">Uh Oh!</h1> <h1 class="text-5xl">Uh Oh!</h1>
<p class="text-2xl">Sorry about that I can't seem to find what you are looking for.</p> <p class="text-2xl">Sorry about that I can't seem to find what you are looking for.</p>
<br> <br>
<a href="/" class="underline">Go Home</a> <a href="/" class="underline">Go Home</a>
</div> </div>
</body> </body>
</html> </html>

View File

@ -1,7 +1,7 @@
--- ---
layout: "../../../layouts/InteractiveDemoLayout.astro" layout: "../../../layouts/InteractiveDemoLayout.astro"
title: "Pedal-pi" title: "Pedal-pi"
tagline: "A custom effects processor using MODEP" tagline: "A bass guitar custom effects processor using MODEP"
date: "May 15, 2023" date: "May 15, 2023"
category: "Hardware" category: "Hardware"
image: "https://images.unsplash.com/photo-1511203438670-49f8ea8441c6?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80" image: "https://images.unsplash.com/photo-1511203438670-49f8ea8441c6?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80"

View File

@ -0,0 +1,9 @@
---
layout: "../../layouts/InteractiveDemoLayout.astro"
title: "I converted my resume to JSON"
tagline: "...and it makes applying to jobs so much easier."
date: "August 06, 2023"
category: "Software"
image: "https://images.unsplash.com/photo-1602407294553-6ac9170b3ed0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1548&q=80"
imageattr: "https://unsplash.com/photos/4YzrcDNcRVg"
---