diff --git a/config/collections/posts.js b/config/collections/posts.js
index 88c0456..ee09386 100644
--- a/config/collections/posts.js
+++ b/config/collections/posts.js
@@ -3,5 +3,6 @@ export default function (eleventyConfig) {
collectionApi.getFilteredByTag("posts")
.filter(p => process.env.DEBUG || !p.data.tags.includes("draft"))
.filter(p => process.env.DEBUG || p.date < new Date())
+ .filter(p => process.env.DEBUG || !p.data.tags.includes("unlisted"))
);
}
\ No newline at end of file
diff --git a/src/_includes/base.njk b/src/_includes/base.njk
index 1d41d09..d0e2b1f 100644
--- a/src/_includes/base.njk
+++ b/src/_includes/base.njk
@@ -50,7 +50,6 @@
{{ content | safe }}
diff --git a/src/blog/posts/2025/2/All things must end.md b/src/blog/posts/2025/2/All things must end.md
index 5f28dbf..676699b 100644
--- a/src/blog/posts/2025/2/All things must end.md
+++ b/src/blog/posts/2025/2/All things must end.md
@@ -2,6 +2,7 @@
date: 2025-02-03T12:41:50+00:00
tags:
- personal
+ - unlisted
title: All things must end
excerpt: An incoherent ramble about the last couple of months
---
diff --git a/src/css/exceptions/color-scheme-picker.css b/src/css/exceptions/color-scheme-picker.css
index 0b5309b..895c223 100644
--- a/src/css/exceptions/color-scheme-picker.css
+++ b/src/css/exceptions/color-scheme-picker.css
@@ -3,8 +3,7 @@
border: 0;
padding: 0;
display: flex;
- gap: var(--space-size-3xs);
- flex-direction: column;
+ gap: var(--space-size-s);
max-width: 25rem;
margin-left: auto;
text-align: right;
@@ -67,13 +66,4 @@
text-shadow: var(--color-decoration) 1px 0 10px;
}
}
-}
-
-@media only screen and (max-width: 1280px) {
- .color-scheme {
- margin-right: 0;
- margin-left: auto;
- padding: 0 var(--space-size-l);
- width: 100%;
- }
}
\ No newline at end of file
diff --git a/src/css/exceptions/header.css b/src/css/exceptions/header.css
index 1e4a362..8626deb 100644
--- a/src/css/exceptions/header.css
+++ b/src/css/exceptions/header.css
@@ -1,17 +1,21 @@
header {
- flex-basis: 20rem;
- flex-grow: 1;
- padding: var(--space-size-m) var(--space-size-2xs);
+ padding: var(--space-size-m) var(--space-size-s);
+ display: flex;
+ gap: var(--space-size-s);
+ align-items: center;
+ justify-content: space-between;
+ flex-wrap: wrap;
> * {
- margin-left: auto;
+ flex-shrink: 0;
}
+ /* > * {
+ margin-left: auto;
+ } */
}
-@media only screen and (max-width: 1280px) {
- header {
- .switcher-lg {
- flex-direction: column-reverse;
- }
+@media only screen and (max-width: 39.15rem) {
+ header > * {
+ margin: 0 auto;
}
}
\ No newline at end of file
diff --git a/src/css/exceptions/main-nav.css b/src/css/exceptions/main-nav.css
index 81f51b3..d880f5c 100644
--- a/src/css/exceptions/main-nav.css
+++ b/src/css/exceptions/main-nav.css
@@ -1,5 +1,4 @@
.main-nav {
- text-align: right;
a {
position: relative;
@@ -8,12 +7,18 @@
a[aria-current="page"]::before {
content: "\203A";
font-size: larger;
- position: absolute;
- left: -1ch;
- top: -.5ch;
+ display: inline-block;
+ text-decoration: none;
+ line-height: 1;
+ margin-right: .5ch;
+ }
+
+ ul {
+ display: flex;
+ gap: var(--space-size-s);
}
}
-
+/*
@media only screen and (max-width: 1280px) {
.main-nav {
flex-basis: 100%;
@@ -35,4 +40,4 @@
}
}
-}
\ No newline at end of file
+} */
\ No newline at end of file
diff --git a/src/css/globals.css b/src/css/globals.css
index d611ce5..40509b8 100644
--- a/src/css/globals.css
+++ b/src/css/globals.css
@@ -9,7 +9,6 @@
--color-callout-bg: light-dark(var(--color-slate-300), var(--color-slate-800));
--color-callout-border: light-dark(var(--color-coolGray-400), var(--color-coolGray-600));
color-scheme: light dark;
-
}
.inverse {
@@ -38,20 +37,22 @@
body {
background-color: var(--color-secondary);
color: var(--color-primary);
- font-family: var(--font-family-mono);
+ font-family: var(--font-family-sans);
font-size: var(--text-size-s);
text-underline-offset: var(--space-size-4xs);
display: flex;
+ flex-direction: column;
flex-wrap: wrap;
- max-width: var(--screen-2xl);
margin: 0 auto;
> .content {
- flex-basis: 0;
- flex-grow: 999;
- min-inline-size: 75%;
- max-inline-size: 100%;
+ /* flex-basis: 0; */
+ /* flex-grow: 999; */
+ /* min-inline-size: 75%; */
+ /* max-inline-size: 100%; */
+ max-width: var(--screen-2xl);
padding: var(--space-size-s) var(--space-size-m);
+ margin: 0 auto;
}
}
@@ -125,7 +126,7 @@ nav {
p {
- line-height: 1.6;
+ line-height: 1.5;
max-width: 70ch;
&:has(> picture) {
diff --git a/src/feeds/tags/atom.njk b/src/feeds/tags/atom.njk
deleted file mode 100644
index 8613058..0000000
--- a/src/feeds/tags/atom.njk
+++ /dev/null
@@ -1,37 +0,0 @@
----
-pagination:
- data: collections.tags
- size: 1
- alias: tag
-eleventyComputed:
- permalink: "/post/tag/{{ tag | slugify }}/atom.xml"
-eleventyExcludeFromCollections: true
-eleventyImport:
- collections: ["posts", "tags"]
----
-
-
-
- {{ metadata.site.name }}
- Posts tagged #{{ tag }}
-
-
- {{ collections.posts | getNewestCollectionItemDate | dateToRfc3339 }}
- {{ metadata.site.url }}
-
- {{ metadata.author.name }}
- {{ metadata.site.url }}
-
-
- {%- for post in collections.tagPosts[tag] %}
- {%- set absolutePostUrl = post.url | absoluteUrl(metadata.site.url) %}
-
- {{ post.data.title }}
-
- {{ post.date | dateToRfc3339 }}
- {{ absolutePostUrl }}
- {{ post.templateContent | htmlToAbsoluteUrls(absolutePostUrl) }}
- {{ post | excerpt }}
-
- {%- endfor %}
-
\ No newline at end of file
diff --git a/src/feeds/tags/json.njk b/src/feeds/tags/json.njk
deleted file mode 100644
index 6babfd0..0000000
--- a/src/feeds/tags/json.njk
+++ /dev/null
@@ -1,38 +0,0 @@
----
-pagination:
- data: collections.tags
- size: 1
- alias: tag
-eleventyComputed:
- permalink: "/post/tag/{{ tag | slugify }}/feed.json"
-eleventyExcludeFromCollections: true
-eleventyImport:
- collections: ["posts", "tags"]
----
-{
- "version": "https://jsonfeed.org/version/1.1",
- "title": "{{ metadata.site.name }}",
- "language": "{{ metadata.site.language }}",
- "home_page_url": "{{ metadata.site.url }}",
- "feed_url": "{{ permalink | absoluteUrl(metadata.site.url) }}",
- "description": "Posts tagged #{{ tag }}",
- "author": {
- "name": "{{ metadata.author.name }}",
- "url": "{{ metadata.site.url }}"
- },
- "items": [
- {%- for post in collections.tagPosts[tag] %}
- {%- set absolutePostUrl = post.url | absoluteUrl(metadata.site.url) %}
- {
- "id": "{{ absolutePostUrl }}",
- "url": "{{ absolutePostUrl }}",
- "title": "{{ post.data.title }}",
- "content_html": {% if post.templateContent %}{{ post.templateContent | htmlToAbsoluteUrls(absolutePostUrl) | dump | safe }}{% else %}""{% endif %},
- "date_published": "{{ post.date | dateToRfc3339 }}",
- "tags": {{ post.data.tags | except("posts") | json | safe }},
- "summary": {{ post | excerpt | json | safe }}
- }
- {% if not loop.last %},{% endif %}
- {%- endfor %}
- ]
-}
\ No newline at end of file
diff --git a/src/feeds/tags/rss.njk b/src/feeds/tags/rss.njk
deleted file mode 100644
index b95f09a..0000000
--- a/src/feeds/tags/rss.njk
+++ /dev/null
@@ -1,34 +0,0 @@
----
-pagination:
- data: collections.tags
- size: 1
- alias: tag
-eleventyComputed:
- permalink: "/post/tag/{{ tag | slugify }}/rss.xml"
-eleventyExcludeFromCollections: true
-eleventyImport:
- collections: ["posts", "tags"]
----
-
-
-
-
- {{ metadata.site.name }}
- {{ metadata.site.url }}
-
- Posts tagged #{{ tag }}
- {{ metadata.site.language }}
- {%- for post in collections.tagPosts[tag] %}
- {%- set absolutePostUrl = post.url | absoluteUrl(metadata.site.url) %}
- -
- {{ post.data.title }}
- {{ absolutePostUrl }}
- {{ post.templateContent | htmlToAbsoluteUrls(absolutePostUrl) }}
- {{ post.date | dateToRfc822 }}
- {{ metadata.author.name }}
- {{ post | excerpt }}
- {{ absolutePostUrl }}
-
- {%- endfor %}
-
-
\ No newline at end of file