chore: cleanup

This commit is contained in:
Cory Dransfeldt 2024-10-25 12:52:20 -07:00
parent 56c9a128f0
commit e327e44f1d
No known key found for this signature in database
38 changed files with 93 additions and 106 deletions

View file

@ -22,11 +22,8 @@ const appVersion = require("./package.json").version;
export default async function (eleventyConfig) {
eleventyConfig.addPlugin(syntaxHighlight);
eleventyConfig.addPlugin(tablerIcons);
if (process.env.ELEVENTY_PRODUCTION) eleventyConfig.addPlugin(cssConfig);
eleventyConfig.setServerOptions({ domdiff: false });
eleventyConfig.setWatchThrottleWaitTime(200);
eleventyConfig.setQuietMode(true);
eleventyConfig.configureErrorReporting({ allowMissingExtensions: true });
eleventyConfig.setLiquidOptions({
@ -105,7 +102,6 @@ export default async function (eleventyConfig) {
});
return {
passthroughFileCopy: true,
dir: {
input: "src",
includes: "includes",

4
package-lock.json generated
View file

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

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "1.8.0",
"version": "1.8.1",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"engines": {

View file

@ -1,66 +1,33 @@
{%- assign fullUrl = globals.url | append: page.url -%}
{%- assign pageTitle = globals.site_name -%}
{%- assign pageDescription = globals.site_description -%}
{%- case schema -%}
{%- when 'blog' -%}
{%- assign pageTitle = post.title -%}
{%- assign pageDescription = post.description | markdown | strip_html | default: globals.site_description -%}
{%- when 'music-index' -%}
{%- assign pageTitle = 'Music / ' | append: globals.site_name -%}
{%- when 'music-period' -%}
{%- assign pageTitle = 'Music / ' | append: page.title | append: ' / ' | append: globals.site_name -%}
{%- when 'books-year' -%}
{%- assign pageTitle = year.value | append: ' / Books / ' | append: globals.site_name -%}
{%- when 'page' -%}
{%- assign pageTitle = page.title | append: ' / ' | append: globals.site_name -%}
{%- else -%}
{%- assign pageTitle = globals.site_name -%}
{%- endcase -%}
{%- if page.description -%}
{%- assign pageDescription = page.description -%}
{%- elsif description -%}
{%- assign pageDescription = description -%}
{%- endif -%}
{%- assign ogImage = globals.cdn_url | append: globals.avatar -%}
{%- case schema -%}
{%- when 'music' -%}
{%- assign ogImage = globals.cdn_url | append: page.image -%}
{%- when 'music-index' -%}
{%- assign ogImage = globals.cdn_url | append: music.week.artists[0].grid.image -%}
{%- when 'watching' or 'favorite-movies' -%}
{%- assign featuredMovie = movies.recentlyWatched | first -%}
{%- assign ogImage = globals.cdn_url | append: featuredMovie.grid.backdrop -%}
{%- when 'watching-shows' or 'favorite-shows' -%}
{%- assign featuredShow = tv.recentlyWatched | first -%}
{%- assign ogImage = globals.cdn_url | append: featuredShow.grid.backdrop -%}
{%- when 'books' or 'books-year' -%}
{%- assign featuredBook = books.all | filterBooksByStatus: 'started' | reverse | first -%}
{%- assign ogImage = globals.cdn_url | append: featuredBook.grid.image -%}
{%- endcase -%}
{%- assign escapedPageDescription = pageDescription | escape -%}
{%- capture updateTime -%}
{%- if updated == "now" -%}
{{ 'now' | date: "%B %-d, %l:%M %P", "America/Los_Angeles" }}
{%- elsif page.updated -%}
{{ page.updated | date: "%B %-d, %l:%M %P", "America/Los_Angeles" }}
{%- endif -%}
{%- endcapture -%}
<!doctype html>
<html lang="{{ globals.lang }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title data-dynamic="title">{{ pageTitle }}</title>
<meta name="color-scheme" content="light dark">
<link rel="preload" href="/assets/fonts/ml.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<link rel="preload" href="/assets/fonts/mlb.woff2" as="font" type="font/woff2" crossorigin="anonymous">
<link rel="stylesheet" href="/assets/styles/index.css?v={% appVersion %}" type="text/css" />
<link rel="canonical" href="{{ fullUrl }}" />
<meta name="color-scheme" content="light dark">
<meta property="og:title" content="{{ pageTitle }}" data-dynamic="og:title" />
<meta name="description" content="{{ escapedPageDescription }}" data-dynamic="description" />
<meta property="og:description" content="{{ escapedPageDescription }}" data-dynamic="og:description" />
<meta property="og:type" content="article" />
<meta property="og:url" content="{{ fullUrl }}" data-dynamic="og:url" />
<meta property="og:image" content="{{ ogImage }}?class=w800" data-dynamic="og:image" />
{% render "partials/metadata.liquid",
globals:globals,
schema:schema,
title:title,
page:page,
post:post,
year:year,
music:music,
books:books,
featuredMovie:featuredMovie,
featuredShow:featuredShow,
featuredBook:featuredBook,
%}
<meta name="theme-color" content="{{ globals.theme_color }}" />
<meta name="fediverse:creator" content="{{ globals.mastodon }}" />
<meta name="generator" content="Eleventy">
@ -92,6 +59,14 @@
metaColorScheme.setAttribute('content', themeToSet);
})();
</script>
{{ content }}
<div class="main-wrapper">
<main>
{% render "partials/header.liquid", globals:globals, page:page, nav:nav %}
<div class="default-wrapper" data-dynamic="page">
{{ content }}
</div>
</main>
{% render "partials/footer.liquid", page:page, nav:nav, updated:updateTime %}
</div>
</body>
</html>

View file

@ -1,7 +0,0 @@
---
layout: main
---
{% render "partials/header.liquid", globals: globals, page: page, nav: nav %}
<div class="default-wrapper" data-dynamic="page">
{{ content }}
</div>

View file

@ -1,14 +0,0 @@
---
layout: base
---
{%- capture updateTime -%}
{%- if updated == "now" -%}
{{ 'now' | date: "%B %-d, %l:%M %P", "America/Los_Angeles" }}
{%- elsif page.updated -%}
{{ page.updated | date: "%B %-d, %l:%M %P", "America/Los_Angeles" }}
{%- endif -%}
{%- endcapture -%}
<div class="main-wrapper">
<main>{{ content }}</main>
{% render "partials/footer.liquid", page:page, nav:nav, updated:updateTime %}
</div>

View file

@ -1,4 +0,0 @@
---
layout: default
---
{{ content | markdown }}

View file

@ -0,0 +1,53 @@
{%- assign fullUrl = globals.url | append: page.url -%}
{%- assign pageTitle = globals.site_name -%}
{%- assign pageDescription = globals.site_description -%}
{%- assign ogImage = globals.cdn_url | append: globals.avatar -%}
{%- case schema -%}
{%- when 'blog' -%}
{%- assign pageTitle = post.title -%}
{%- assign pageDescription = post.description | markdown | strip_html | default: globals.site_description -%}
{%- when 'music-index' -%}
{%- assign pageTitle = 'Music / ' | append: globals.site_name -%}
{%- when 'music-period' -%}
{%- assign pageTitle = 'Music / ' | append: page.title | append: ' / ' | append: globals.site_name -%}
{%- when 'music' -%}
{%- assign ogImage = globals.cdn_url | append: page.image -%}
{%- when 'music-index' -%}
{%- assign ogImage = globals.cdn_url | append: music.week.artists[0].grid.image -%}
{%- when 'watching' or 'favorite-movies' -%}
{%- assign featuredMovie = movies.recentlyWatched | first -%}
{%- assign ogImage = globals.cdn_url | append: featuredMovie.grid.backdrop -%}
{%- when 'watching-shows' or 'favorite-shows' -%}
{%- assign featuredShow = tv.recentlyWatched | first -%}
{%- assign ogImage = globals.cdn_url | append: featuredShow.grid.backdrop -%}
{%- when 'books' or 'books-year' -%}
{%- assign featuredBook = books.all | filterBooksByStatus: 'started' | reverse | first -%}
{%- assign ogImage = globals.cdn_url | append: featuredBook.grid.image -%}
{%- when 'books-year' -%}
{%- assign pageTitle = year.value | append: ' / Books / ' | append: globals.site_name -%}
{%- when 'page' -%}
{%- assign pageTitle = page.title | append: ' / ' | append: globals.site_name -%}
{%- else -%}
{%- assign pageTitle = globals.site_name -%}
{%- endcase -%}
{% if title %}
{%- assign pageTitle = title | append: ' / ' | append: globals.site_name -%}
{% endif %}
{%- if page.description -%}
{%- assign pageDescription = page.description -%}
{%- elsif description -%}
{%- assign pageDescription = description -%}
{%- endif -%}
{%- assign escapedPageDescription = pageDescription | escape -%}
<title data-dynamic="title">{{ pageTitle }}</title>
<link rel="canonical" href="{{ fullUrl }}" />
<meta property="og:title" content="{{ pageTitle }}" data-dynamic="og:title" />
<meta name="description" content="{{ escapedPageDescription }}" data-dynamic="description" />
<meta property="og:description" content="{{ escapedPageDescription }}" data-dynamic="og:description" />
<meta property="og:type" content="article" />
<meta property="og:url" content="{{ fullUrl }}" data-dynamic="og:url" />
<meta property="og:image" content="{{ ogImage }}?class=w800" data-dynamic="og:image" />

View file

@ -1,6 +1,5 @@
---
title: Blogroll
layout: page
permalink: /blogroll.html
description: These are awesome blogs that I enjoy and you may enjoy too.
---

View file

@ -1,7 +1,6 @@
---
title: Currently reading / Books
title: Currently reading
description: Here's what I'm reading at the moment.
layout: default
permalink: "/books/index.html"
updated: "now"
schema: books

View file

@ -1,5 +1,4 @@
---
layout: default
pagination:
data: books.years
size: 1

View file

@ -1,5 +1,4 @@
---
layout: default
permalink: /
---
{% render "partials/home/intro.liquid" intro:globals.intro, nowPlaying:nowPlaying.content %}

View file

@ -1,7 +1,6 @@
---
title: Links
description: These are links I've liked or otherwise found interesting. They're all added manually, after having been read and, I suppose, properly considered.
layout: default
pagination:
data: links
size: 30

View file

@ -1,7 +1,6 @@
---
title: Concerts
description: These are concerts I've attended (not all of them — just the ones I could remember or glean from emails, photo metadata et al).
layout: default
pagination:
data: concerts
size: 30

View file

@ -1,7 +1,6 @@
---
title: Music
description: This is everything I've been listening to recently — it's collected in a database as I listen to it and displayed here.
layout: default
permalink: "/music/index.html"
updated: "now"
schema: music-index

View file

@ -1,7 +1,6 @@
---
title: This month
description: This is everything I've been listening to this month — it's collected in a database as I listen to it and displayed here.
layout: default
permalink: "/music/this-month/index.html"
updated: "now"
image: music.month.artists[0].image

View file

@ -1,14 +1,12 @@
---
layout: default
pagination:
data: pages
size: 1
alias: page
title: "{{ page.title }}"
description: "{{ page.description }}"
permalink: "{{ page.permalink }}/index.html"
image: "{{ page.open_graph_image | prepend: globals.cdn_url | default: globals.avatar }}"
updated: {{ page.updated | default: null }}
updated: "{{ page.updated | default: null }}"
schema: page
---
{% render "partials/blocks/index.liquid", blocks:page.blocks, globals:globals %}
{% render "partials/blocks/index.liquid", blocks:page.blocks, globals:globals %}

3
src/pages/pages.json Normal file
View file

@ -0,0 +1,3 @@
{
"layout": "base.liquid"
}

View file

@ -1,6 +1,5 @@
---
title: All posts
layout: default
pagination:
data: posts
size: 8

View file

@ -1,5 +1,4 @@
---
layout: default
pagination:
data: posts
size: 1

View file

@ -1,7 +1,6 @@
---
title: Favorite movies
description: These are my favorite movies. There are many like them, but these are mine.
layout: default
pagination:
data: movies.favorites
size: 24

View file

@ -1,7 +1,6 @@
---
title: Favorite shows
description: These are my favorite shows. There are many like them, but these are mine.
layout: default
pagination:
data: tv.favorites
size: 24

View file

@ -1,7 +1,6 @@
---
title: Watching
title: Currently watching
description: Here's all of the TV and movies I've been watching presented in what is (hopefully) an organized fashion.
layout: default
permalink: "/watching/index.html"
updated: "now"
schema: watching