Update theme, unlist the All Things Must End post
Some checks are pending
Build and copy to prod / build-and-copy (push) Has started running

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")
.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"))
);
}

View File

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

View File

@ -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
---

View File

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

View File

@ -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;
}
}

View File

@ -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 @@
}
}
}
} */

View File

@ -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) {

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>