Skip to content

Commit 1bb05d9

Browse files
committed
fix pagefind
1 parent 974be1d commit 1bb05d9

20 files changed

Lines changed: 109 additions & 364 deletions

.nojekyll

Whitespace-only changes.

404.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!DOCTYPE html><html lang="en"> <head><meta charset="UTF-8"><meta name="viewport" content="width=device-width"><link rel="icon" type="image/svg+xml" href="/favicon.svg"><meta name="generator" content="Astro v5.7.10"><title>404</title><meta name="description" content="This page could not be found."><meta name="theme-color" content="#8c5cf5"><link rel="canonical" href="https://33j33.github.io/"><meta name="og:title" content="404"><meta name="og:description" content="This page could not be found."><meta name="og:image" content="/img/og.png"><meta name="og:url" content="https://33j33.github.io/"><meta name="og:type" content="website"><meta name="og:locale" content="en"><meta name="twitter:card" content="summary_large_image"><meta name="twitter:title" content="404"><meta name="twitter:description" content="This page could not be found."><meta name="twitter:image" content="/img/og.png"><link rel="stylesheet" href="/_astro/index.BJhKo5tD.css">
1+
<!DOCTYPE html><html lang="en"> <head><meta charset="UTF-8"><meta name="viewport" content="width=device-width"><link rel="icon" type="image/svg+xml" href="/favicon.svg"><meta name="generator" content="Astro v5.7.10"><title>404</title><meta name="description" content="This page could not be found."><meta name="theme-color" content="#8c5cf5"><link rel="canonical" href="https://33j33.github.io/"><meta name="og:title" content="404"><meta name="og:description" content="This page could not be found."><meta name="og:image" content="/img/og.png"><meta name="og:url" content="https://33j33.github.io/"><meta name="og:type" content="website"><meta name="og:locale" content="en"><meta name="twitter:card" content="summary_large_image"><meta name="twitter:title" content="404"><meta name="twitter:description" content="This page could not be found."><meta name="twitter:image" content="/img/og.png"><link rel="stylesheet" href="/_astro/index.DC0aqGwx.css">
22
<style>.notfound-container[data-astro-cid-zetdm5md]{display:flex;height:80vh;justify-content:center;align-items:center;width:100%;text-align:center;flex-direction:column}.notfound-container[data-astro-cid-zetdm5md] h1[data-astro-cid-zetdm5md]{font-size:4rem;margin:0}.notfound-container[data-astro-cid-zetdm5md] p[data-astro-cid-zetdm5md]{font-size:1.25em}.block-link[data-astro-cid-zetdm5md]{margin-top:1rem}
33
</style></head> <body> <main data-pagefind-ignore="true"> <nav data-astro-cid-5blmo7yk> <a class="site-title" href="/" data-astro-cid-5blmo7yk>Ornithopter</a> <ul data-astro-cid-5blmo7yk> <li data-astro-cid-5blmo7yk> <a href="/posts" data-astro-cid-5blmo7yk>Posts</a> </li> <li class="nav-separator" data-astro-cid-5blmo7yk>/</li> <li data-astro-cid-5blmo7yk> <a href="/projects" data-astro-cid-5blmo7yk>Projects</a> </li> <li class="nav-separator" data-astro-cid-5blmo7yk>/</li> <li data-astro-cid-5blmo7yk> <input id="search" type="text" placeholder="Search (Ctrl+K)" data-astro-cid-5blmo7yk> <div id="search-results" data-astro-cid-5blmo7yk></div> </li> </ul> <button class="mobile-nav-toggle" data-astro-cid-5blmo7yk> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="menu-closed" data-astro-cid-5blmo7yk="true"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 12h16M4 6h16M4 18h16"/></svg> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" class="menu-open" data-astro-cid-5blmo7yk="true"><path fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M18 6L6 18M6 6l12 12"/></svg> </button> </nav> <script>
44
const searchElement = document.querySelector('#search');

_astro/index.BJhKo5tD.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

_astro/index.DC0aqGwx.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

blog/src/pages/projects.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const projects = await getCollection("projects");
3232
<Icon type='lucide' name="folder-git" width={24} height={24} class='glow-icon' />
3333
<h2>Projects</h2>
3434
</div>
35-
<div class="content-container">
35+
<div class="content-container" data-pagefind-body>
3636
{projects.sort((a, b) => b.data.date.getTime() - a.data.date.getTime()).map((post) => (
3737
<PostCard link={post.data.link} title={post.data.title} description={post.data.description} tags={post.data.tags.map((tag) => tag.id)}/>
3838
))}

0 commit comments

Comments
 (0)