diff --git a/_headers b/_headers index 52f711c7..94a1fcc7 100644 --- a/_headers +++ b/_headers @@ -40,6 +40,9 @@ /feeds/books.json Content-Type: application/json +/api/search + Content-Type: application/json + /.well-known/webfinger Content-Type: application/jrd+json; charset=utf-8 diff --git a/package-lock.json b/package-lock.json index 7fc4f053..a97e29e7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "24.21.4", + "version": "25.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "24.21.4", + "version": "25.0.0", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.5.0", diff --git a/package.json b/package.json index 3135904a..504b68d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "24.21.4", + "version": "25.0.0", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/assets/styles/pages/webrings.css b/src/assets/styles/pages/webrings.css index 29cf09a7..cc23c248 100644 --- a/src/assets/styles/pages/webrings.css +++ b/src/assets/styles/pages/webrings.css @@ -6,6 +6,10 @@ text-align: center; margin: var(--margin-vertical-base-horizontal-zero); + & p { + margin: 0; + } + & .webring-navigation { display: flex; align-items: center; diff --git a/src/data/badges.js b/src/data/badges.js deleted file mode 100644 index 9c9ebfe5..00000000 --- a/src/data/badges.js +++ /dev/null @@ -1,35 +0,0 @@ -import { createClient } from '@supabase/supabase-js' - -const SUPABASE_URL = process.env.SUPABASE_URL -const SUPABASE_KEY = process.env.SUPABASE_KEY -const supabase = createClient(SUPABASE_URL, SUPABASE_KEY) - -const fetchAllBadges = async () => { - const { data, error } = await supabase - .from('badges') - .select(` - *, - image(filename_disk) - `) - - if (error) { - console.error('Error fetching badge data:', error) - return [] - } - - const transformedData = data.map(badge => ({ - ...badge, - image: badge.image?.['filename_disk'] || '', - })).sort((a, b) => a['sort'] - b['sort']) - - return transformedData -} - -export default async function () { - try { - return await fetchAllBadges() - } catch (error) { - console.error('Error fetching and processing badge data:', error) - return [] - } -} \ No newline at end of file diff --git a/src/includes/partials/blocks/badge-grid.liquid b/src/includes/partials/blocks/badge-grid.liquid deleted file mode 100644 index 5f8ee7b0..00000000 --- a/src/includes/partials/blocks/badge-grid.liquid +++ /dev/null @@ -1,18 +0,0 @@ -
- {%- for badge in badges limit: 8 -%} - - {{ badge.image_alt }} - - {%- endfor -%} -
\ No newline at end of file diff --git a/src/includes/webrings/css-joy.liquid b/src/includes/webrings/css-joy.liquid deleted file mode 100644 index 82582228..00000000 --- a/src/includes/webrings/css-joy.liquid +++ /dev/null @@ -1,16 +0,0 @@ -
-

- CSS JOY Webring -

-
- - {% tablericon "arrow-left" "Previous site" %} - - - {% tablericon "dice-3" "Random site" %} - - - {% tablericon "arrow-right" "Next site" %} - -
-
\ No newline at end of file diff --git a/src/includes/webrings/the-claw.liquid b/src/includes/webrings/the-claw.liquid deleted file mode 100644 index f0e64993..00000000 --- a/src/includes/webrings/the-claw.liquid +++ /dev/null @@ -1,26 +0,0 @@ -
- The Claw Webring -

The Claw Webring

-

- - Join! - -

-
\ No newline at end of file diff --git a/src/pages/data/search.json.liquid b/src/pages/data/search.json.liquid new file mode 100644 index 00000000..7c1e1e26 --- /dev/null +++ b/src/pages/data/search.json.liquid @@ -0,0 +1,4 @@ +--- +permalink: /api/search +--- +{{ collections.searchIndex | json }} \ No newline at end of file diff --git a/src/pages/static/about.md b/src/pages/static/about.md deleted file mode 100644 index f83d5ad6..00000000 --- a/src/pages/static/about.md +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: About -layout: page -permalink: /about.html ---- -{%- assign artist = music.week.artists | first -%} -{%- assign book = books.all | bookStatus: 'started' | reverse | first -%} -{%- assign show = tv.recentlyWatched | first -%} -
-
- {%- capture about_alt -%}{{ globals.site_name }} - image by @joel@fosstodon.org{%- endcapture -%} - {{ about_alt }} -
-
-

Hi, I'm Cory

- -I'm a software developer based in Camarillo, California. I enjoy hanging out with my beautiful family and 3 rescue dogs, technology, automation, [music](https://coryd.dev/music), [writing](https://coryd.dev/posts), [reading](https://coryd.dev/books), [tv](https://coryd.dev/watching#tv) and [movies](https://coryd.dev/watching#movies). Lately I've been listening to a lot of {{ artist.title }}, reading {{ book.title }} and watching {{ show.name }}. - -I build, maintain and design web applications. I've been coding professionally since 2010 with a focus on frontend technologies. I also mentor through [Underdog Devs](https://www.underdogdevs.org). - -I tend to write about whatever strikes me, with a focus on development, technology, automation or issues I run into with these things. This is all typically light on editing with and heavy on spur of the moment thoughts. - -[You can also see what I'm doing now](/now), [take a look at the links I've shared recently](/links) or [check out the webrings I'm a member of](/webrings). - -{% render "partials/blocks/badge-grid.liquid", badges: badges %} diff --git a/src/pages/static/contact.html b/src/pages/static/contact.html deleted file mode 100644 index f10d99ed..00000000 --- a/src/pages/static/contact.html +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Contact -layout: default -permalink: /contact.html -description: How to contact me. ---- -

{{ title }}

-
-
-

Fill out the form to get in touch. Or I've got other options 👇🏻

- -
-
- - - - - -
-
\ No newline at end of file diff --git a/src/pages/static/search.html b/src/pages/static/search.html deleted file mode 100644 index a0e8551a..00000000 --- a/src/pages/static/search.html +++ /dev/null @@ -1,80 +0,0 @@ ---- -title: Search -description: Search through and find the posts and links on my site. -layout: default -permalink: /search.html ---- - - -

Search

-

You can find posts, links, artists, genres, movies, shows and books via the field below (though it only surfaces movies and books I've written something about).

- -
- - -
- \ No newline at end of file diff --git a/src/pages/static/webrings.md b/src/pages/static/webrings.md deleted file mode 100644 index 366a94ae..00000000 --- a/src/pages/static/webrings.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -title: Webrings -layout: page -permalink: /webrings.html -description: Webrings are awesome! These are the ones I'm a member of. ---- -

{{ title }}

- -[Webrings](https://en.wikipedia.org/wiki/Webring) are _awesome_. I'm a member of a few that follow. Check them out! - -{% render "webrings/the-claw.liquid", logo: globals.logo_the_claw %} -
-{% render "webrings/css-joy.liquid" %}