From 6716c43b3265f4329e15c441291d625d7adcfeb2 Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Wed, 8 Jan 2025 11:41:25 +0100 Subject: [PATCH 1/2] fix: table heading colors --- tailwind.config.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tailwind.config.js b/tailwind.config.js index 2dcbdfbf..3ee7c8a7 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -83,6 +83,9 @@ module.exports = { color: theme("colors.rp-dawn-text"), // align w/ main text color fontWeight: "800", }, + th: { + color: theme("colors.rp-dawn-text"), + }, }, }, // NOTE: This is for prose (Markdown) in DARK mode @@ -109,6 +112,9 @@ module.exports = { color: theme("colors.rp-moon-iris"), // align w/ main text color fontWeight: "800", }, + th: { + color: theme("colors.rp-moon-iris"), + }, }, }, }), From bfed925127fe44a2ba57cf78dcaf605be59846a6 Mon Sep 17 00:00:00 2001 From: Oliver Ladner Date: Wed, 8 Jan 2025 11:42:54 +0100 Subject: [PATCH 2/2] refactor: remove obsolete period archives template --- templates/period_archives.html | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 templates/period_archives.html diff --git a/templates/period_archives.html b/templates/period_archives.html deleted file mode 100644 index 181f4937..00000000 --- a/templates/period_archives.html +++ /dev/null @@ -1,14 +0,0 @@ -{% extends "base.html" %} - -{% block title %}{{ SITENAME|striptags }} - {{ period | reverse | join(' ') }} archives{% endblock %} - -{% block content %} -

Archives for {{ period | reverse | join(' ') }}

- -
- {% for article in dates %} -
{{ article.locale_date }}
-
{{ article.title }}
- {% endfor %} -
-{% endblock %}