chore: misc cleanup

This commit is contained in:
Cory Dransfeldt 2024-06-01 11:57:39 -07:00
parent 6996f7ab6d
commit 0211306dc6
No known key found for this signature in database
7 changed files with 20 additions and 10924 deletions
package-lock.jsonpackage.json
src
_data/json
_includes
assets/styles

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "18.0.2",
"version": "18.1.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "18.0.2",
"version": "18.1.2",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.4.0",

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "18.0.2",
"version": "18.1.2",
"description": "The source for my personal site. Built using 11ty.",
"type": "module",
"scripts": {

File diff suppressed because it is too large Load diff

View file

@ -1,104 +0,0 @@
export default {
books: [
{
title: 'Stay True',
authors: 'Hua Hsu',
image: '/media/books/9780385547772-stay-true.jpg',
url: 'https://openlibrary.org/isbn/9780593663660',
type: 'book',
},
{
title: 'Where Are Your Boys Tonight?',
authors: 'Chris Payne',
image: '/media/books/9780063251281-where-are-your-boys-tonight.jpg',
url: 'https://openlibrary.org/isbn/9780063161573',
type: 'book',
},
{
title: 'Trouble Boys',
authors: 'Bob Mehr',
image: '/media/books/0306818795-trouble-boys.jpg',
url: 'https://openlibrary.org/isbn/9780306818790',
type: 'book',
},
{
title: 'Corporate Rock Sucks',
authors: 'Jim Ruland',
image: '/media/books/9780306925481-corporate-rock-sucks.jpg',
url: 'https://openlibrary.org/isbn/9780306925474',
type: 'book',
},
{
title: 'Tracers in the Dark',
authors: 'Andy Greenberg',
image: '/media/books/0593315618-tracers-in-the-dark.jpg',
url: 'http://openlibrary.org/isbn/9780385548106',
type: 'book',
},
{
title: 'Girl in a Band',
authors: 'Kim Gordon',
image: '/media/books/9780062295897-kim-gordon-girl-in-a-band.jpg',
url: 'https://openlibrary.org/isbn/9780062295910',
type: 'book',
}
],
albums: [
{
title: 'the whaler',
artist: 'home is where',
image: '/media/albums/home-is-where-the-whaler.jpg',
url: 'https://musicbrainz.org/release-group/6fe3516f-c324-4265-8f43-d902f3a4cc20',
type: 'album',
},
{
title: 'The Enduring Spirit',
artist: 'Tomb Mold',
image: '/media/albums/tomb-mold-the-enduring-spirit.jpg',
url: 'https://musicbrainz.org/release-group/cd3e5dfb-acca-4856-80f6-2e095ac3270d',
type: 'album',
},
{
title: 'A Dialogue With The Eeriest Sublime',
artist: 'Vertebra Atlantis',
image: '/media/albums/vertebra-atlantis-a-dialogue-with-the-eeriest-sublime.jpg',
url: 'https://musicbrainz.org/release-group/b8f1913b-f461-443c-a26c-377b259f2af6',
type: 'album',
},
{
title: 'ONE MORE TIME...',
artist: 'blink-182',
image: '/media/albums/blink-182-one-more-time.jpg',
url: 'https://musicbrainz.org/release-group/520d6d45-19c8-4ee1-a954-180e7902f3da',
type: 'album',
},
{
title: 'Life Like',
artist: 'Dead Bob',
image: '/media/albums/dead-bob-life-like.jpg',
url: 'https://musicbrainz.org/release-group/ab53e625-74af-4a09-a8ff-e1c08dbae596',
type: 'album',
},
{
title: 'Threads of Unknowing',
artist: 'VoidCeremony',
image: '/media/albums/voidceremony-threads-of-unknowing.jpg',
url: 'https://musicbrainz.org/release-group/f1f91cde-ff57-41c8-bd58-28c236b3f0c6',
type: 'album',
},
{
title: 'Why Would I Watch',
artist: 'Hot Mulligan',
image: '/media/albums/hot-mulligan-why-would-i-watch.jpg',
url: 'https://musicbrainz.org/release-group/5afd31ea-3a96-4b99-a477-4d121efaedec',
type: 'album',
},
{
title: 'Losing What We Love',
artist: 'Knuckle Puck',
image: '/media/albums/knuckle-puck-losing-what-we-love.jpg',
url: 'https://musicbrainz.org/release-group/b51d8882-3854-400a-b79b-4353a77a389b',
type: 'album',
}
]
}

View file

@ -2,7 +2,7 @@
{%- assign pageTitle = meta.siteName -%}
{%- if schema == 'blog' -%}
{%- assign pageTitle = title -%}
{%- assign pageTitle = post.title -%}
{%- elsif title -%}
{%- assign pageTitle = title | append: ' • ' | append: meta.siteName -%}
{%- elsif artist.name_string -%}

View file

@ -65,6 +65,12 @@ blockquote {
margin: var(--sizing-base) 0;
}
code {
padding: var(--sizing-xs);
color: var(--text-color-inverted);
background-color: var(--background-color-inverted);
}
:is(body, html, nav .search) svg {
stroke: var(--text-color);
}
@ -371,7 +377,6 @@ main {
margin-right: auto;
}
/* now */
.home-status,
article {
border-bottom: 1px solid var(--gray-light);
@ -429,18 +434,6 @@ footer {
color: var(--text-color);
}
.highlight-text {
color: var(--color-lightest);
background-color: var(--accent-color);
padding: var(--sizing-xs);
}
code {
padding: var(--sizing-xs);
color: var(--text-color-inverted);
background-color: var(--background-color-inverted);
}
/* articles */
article {
& h2 {
@ -474,6 +467,10 @@ article {
}
}
.footnotes + .banner {
margin-top: 0 !important;
}
/* buttons */
button {
appearance: none;
@ -566,6 +563,12 @@ li {
}
/* utilities */
.highlight-text {
color: var(--color-lightest);
background-color: var(--accent-color);
padding: var(--sizing-xs);
}
.hidden {
display: none !important;
}

View file

@ -16,10 +16,6 @@ hr.footnotes-sep {
padding-bottom: var(--sizing-base);
}
.footnotes + .banner {
margin-top: 0;
}
.footnote-item > p {
display: inline;
}