Update theme, unlist the All Things Must End post
All checks were successful
Build and copy to prod / build-and-copy (push) Successful in 3m19s

This commit is contained in:
Lewis Dale 2025-03-31 16:49:41 +01:00
parent 7e3ce4c444
commit 99370f516a
10 changed files with 36 additions and 147 deletions

View File

@ -3,5 +3,6 @@ export default function (eleventyConfig) {
collectionApi.getFilteredByTag("posts") collectionApi.getFilteredByTag("posts")
.filter(p => process.env.DEBUG || !p.data.tags.includes("draft")) .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.date < new Date())
.filter(p => process.env.DEBUG || !p.data.tags.includes("unlisted"))
); );
} }

View File

@ -50,7 +50,6 @@
</head> </head>
<body> <body>
<header> <header>
<div class="switcher-lg">
<nav class="main-nav"> <nav class="main-nav">
<ul role='list'> <ul role='list'>
<li><a href="/" {% if page.url == "/" %}aria-current="page"{% endif %}>Home</a></li> <li><a href="/" {% if page.url == "/" %}aria-current="page"{% endif %}>Home</a></li>
@ -67,7 +66,6 @@
</nav> </nav>
<fieldset class="color-scheme"> <fieldset class="color-scheme">
<legend>Change your colour scheme</legend> <legend>Change your colour scheme</legend>
<div class="switcher-sm">
<label> <label>
<input type="radio" name="color-scheme" value="dark"> <input type="radio" name="color-scheme" value="dark">
Dark Dark
@ -80,9 +78,7 @@
<input type="radio" name="color-scheme" value="system"> <input type="radio" name="color-scheme" value="system">
System System
</label> </label>
</div>
</fieldset> </fieldset>
</div>
</header> </header>
<div class="content"> <div class="content">
{{ content | safe }} {{ content | safe }}

View File

@ -2,6 +2,7 @@
date: 2025-02-03T12:41:50+00:00 date: 2025-02-03T12:41:50+00:00
tags: tags:
- personal - personal
- unlisted
title: All things must end title: All things must end
excerpt: An incoherent ramble about the last couple of months excerpt: An incoherent ramble about the last couple of months
--- ---

View File

@ -3,8 +3,7 @@
border: 0; border: 0;
padding: 0; padding: 0;
display: flex; display: flex;
gap: var(--space-size-3xs); gap: var(--space-size-s);
flex-direction: column;
max-width: 25rem; max-width: 25rem;
margin-left: auto; margin-left: auto;
text-align: right; text-align: right;
@ -67,13 +66,4 @@
text-shadow: var(--color-decoration) 1px 0 10px; 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%;
}
} }

View File

@ -1,17 +1,21 @@
header { header {
flex-basis: 20rem; padding: var(--space-size-m) var(--space-size-s);
flex-grow: 1; display: flex;
padding: var(--space-size-m) var(--space-size-2xs); 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) { @media only screen and (max-width: 39.15rem) {
header { header > * {
.switcher-lg { margin: 0 auto;
flex-direction: column-reverse;
}
} }
} }

View File

@ -1,5 +1,4 @@
.main-nav { .main-nav {
text-align: right;
a { a {
position: relative; position: relative;
@ -8,12 +7,18 @@
a[aria-current="page"]::before { a[aria-current="page"]::before {
content: "\203A"; content: "\203A";
font-size: larger; font-size: larger;
position: absolute; display: inline-block;
left: -1ch; text-decoration: none;
top: -.5ch; line-height: 1;
margin-right: .5ch;
}
ul {
display: flex;
gap: var(--space-size-s);
} }
} }
/*
@media only screen and (max-width: 1280px) { @media only screen and (max-width: 1280px) {
.main-nav { .main-nav {
flex-basis: 100%; flex-basis: 100%;
@ -35,4 +40,4 @@
} }
} }
} } */

View File

@ -9,7 +9,6 @@
--color-callout-bg: light-dark(var(--color-slate-300), var(--color-slate-800)); --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-callout-border: light-dark(var(--color-coolGray-400), var(--color-coolGray-600));
color-scheme: light dark; color-scheme: light dark;
} }
.inverse { .inverse {
@ -38,20 +37,22 @@
body { body {
background-color: var(--color-secondary); background-color: var(--color-secondary);
color: var(--color-primary); color: var(--color-primary);
font-family: var(--font-family-mono); font-family: var(--font-family-sans);
font-size: var(--text-size-s); font-size: var(--text-size-s);
text-underline-offset: var(--space-size-4xs); text-underline-offset: var(--space-size-4xs);
display: flex; display: flex;
flex-direction: column;
flex-wrap: wrap; flex-wrap: wrap;
max-width: var(--screen-2xl);
margin: 0 auto; margin: 0 auto;
> .content { > .content {
flex-basis: 0; /* flex-basis: 0; */
flex-grow: 999; /* flex-grow: 999; */
min-inline-size: 75%; /* min-inline-size: 75%; */
max-inline-size: 100%; /* max-inline-size: 100%; */
max-width: var(--screen-2xl);
padding: var(--space-size-s) var(--space-size-m); padding: var(--space-size-s) var(--space-size-m);
margin: 0 auto;
} }
} }
@ -125,7 +126,7 @@ nav {
p { p {
line-height: 1.6; line-height: 1.5;
max-width: 70ch; max-width: 70ch;
&:has(> picture) { &:has(> picture) {

View File

@ -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"]
---
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="/atom.xslt" type="text/xsl"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:base="{{ metadata.site.url }}">
<title>{{ metadata.site.name }}</title>
<subtitle>Posts tagged #{{ tag }}</subtitle>
<link href="{{ permalink | absoluteUrl(metadata.site.url) }}" rel="self"/>
<link href="{{ metadata.site.url }}" rel="alternate" />
<updated>{{ collections.posts | getNewestCollectionItemDate | dateToRfc3339 }}</updated>
<id>{{ metadata.site.url }}</id>
<author>
<name>{{ metadata.author.name }}</name>
<uri>{{ metadata.site.url }}</uri>
</author>
<category term="{{ tag }}" />
{%- for post in collections.tagPosts[tag] %}
{%- set absolutePostUrl = post.url | absoluteUrl(metadata.site.url) %}
<entry>
<title>{{ post.data.title }}</title>
<link href="{{ absolutePostUrl }}"/>
<updated>{{ post.date | dateToRfc3339 }}</updated>
<id>{{ absolutePostUrl }}</id>
<content xml:lang="{{ metadata.site.language }}" type="html">{{ post.templateContent | htmlToAbsoluteUrls(absolutePostUrl) }}</content>
<summary>{{ post | excerpt }}</summary>
</entry>
{%- endfor %}
</feed>

View File

@ -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 %}
]
}

View File

@ -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"]
---
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="/rss.xslt" type="text/xsl"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:base="{{ metadata.site.url }}" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>{{ metadata.site.name }}</title>
<link>{{ metadata.site.url }}</link>
<atom:link href="{{ permalink | absoluteUrl(metadata.site.url) }}" rel="self" type="application/rss+xml" />
<description>Posts tagged #{{ tag }}</description>
<language>{{ metadata.site.language }}</language>
{%- for post in collections.tagPosts[tag] %}
{%- set absolutePostUrl = post.url | absoluteUrl(metadata.site.url) %}
<item>
<title>{{ post.data.title }}</title>
<link>{{ absolutePostUrl }}</link>
<description>{{ post.templateContent | htmlToAbsoluteUrls(absolutePostUrl) }}</description>
<pubDate>{{ post.date | dateToRfc822 }}</pubDate>
<dc:creator>{{ metadata.author.name }}</dc:creator>
<atom:summary>{{ post | excerpt }}</atom:summary>
<guid>{{ absolutePostUrl }}</guid>
</item>
{%- endfor %}
</channel>
</rss>