diff --git a/tailwind.config.js b/tailwind.config.js index 3ee7c8a7..2dcbdfbf 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -83,9 +83,6 @@ 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 @@ -112,9 +109,6 @@ module.exports = { color: theme("colors.rp-moon-iris"), // align w/ main text color fontWeight: "800", }, - th: { - color: theme("colors.rp-moon-iris"), - }, }, }, }), diff --git a/templates/period_archives.html b/templates/period_archives.html new file mode 100644 index 00000000..181f4937 --- /dev/null +++ b/templates/period_archives.html @@ -0,0 +1,14 @@ +{% 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 %}