From 547ec606879de694b501a89c76612a0d57aa7f33 Mon Sep 17 00:00:00 2001 From: Joshua Seigler Date: Sun, 22 Jun 2025 00:19:46 -0400 Subject: [PATCH] new post --- eleventy.config.js | 7 ++++++- site/_includes/css/site.css | 7 +++++++ site/pages/tags.njk | 9 +++++---- site/posts/2025-06-21-war.md | 26 ++++++++++++++++++++++++++ 4 files changed, 44 insertions(+), 5 deletions(-) create mode 100644 site/posts/2025-06-21-war.md diff --git a/eleventy.config.js b/eleventy.config.js index 64e7d60..67f34a3 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -96,7 +96,7 @@ export default (config) => { (p) => !p.data.draft || process.env.ELEVENTY_RUN_MODE !== "build", ); - return posts.reduce((tags, post) => { + const categories = posts.reduce((tags, post) => { post.data.tags .filter((tag) => tag !== "posts") .forEach((tag) => { @@ -105,6 +105,11 @@ export default (config) => { }); return tags; }, {}); + return Object.fromEntries( + Object.entries(categories).sort((a, b) => { + return b[1].count - a[1].count; + }), + ); }); config.addTransform("prettier", (content, outputPath) => { diff --git a/site/_includes/css/site.css b/site/_includes/css/site.css index 1e22cc5..dd1eb25 100644 --- a/site/_includes/css/site.css +++ b/site/_includes/css/site.css @@ -780,3 +780,10 @@ body .isso-post-action { .pagefind-ui__result-excerpt { margin: 0.5rem 0; } + +.feature { + > p:first-child::first-line { + font-size: var(--s2); + font-weight: 200; + } +} diff --git a/site/pages/tags.njk b/site/pages/tags.njk index 97f56a8..08cd3b6 100644 --- a/site/pages/tags.njk +++ b/site/pages/tags.njk @@ -3,13 +3,14 @@ layout: base.njk title: Tags permalink: /tags/ --- +
-
+ \ No newline at end of file diff --git a/site/posts/2025-06-21-war.md b/site/posts/2025-06-21-war.md new file mode 100644 index 0000000..b8e7a20 --- /dev/null +++ b/site/posts/2025-06-21-war.md @@ -0,0 +1,26 @@ +--- +title: War +slug: july-21-2025 +description: Lord, have mercy. +tags: + - zeitgeist + - faith +--- + +Today the USA announced its bombing of three locations in Iran, including Iran's main nuclear enrichment site, located under a mountain in Fordow. How far will things go? + +Here is the only way I know of to have peace: live every day as if tomorrow you will face death, where it will be too late for repentance, too late for a change of heart. As St. Isaac the Syrian says^[Quote copied from [St. Nectarios Monastery](https://www.stnektariosmonastery.org/repentance-and-confession/This%20Life%20Has%20Been%20Given%20to%20Us%20for%20Repentance%20-%20St.%20Isaac%20the%20Syrian.pdf) and [OrthodoxWiki](https://orthodoxwiki.org/Isaac_of_Syria)]: + +
+ +Take hold of your life before your light grows dark and you seek help and do not find it. This life has been given to you for repentance; do not waste it in vain pursuits. + +Woe to us! We neither realize just how valuable our soul is, nor comprehend the type of life we have been called to lead. We place great significance on this present life, on illnesses, on the state of society, and on the sorrows, evils, and comforts of this world. + +However, blessed is the person, O Lord Jesus Christ, who receives help from You. You, O Lord, are the only powerful One. Turn our faces away from the desire for this world so that we may covet You alone. Grant us, O Lord, understanding, so that we may comprehend just how deceitful this present world is, and so that we do not believe in this shadow as if it were the truth. + +Seek the Lord, and be strengthened through hope. Seek His face through repentance, and you will be sanctified and cleansed from your sins, on account of the sanctity of His face. Hasten to the Lord, all of you who are guilty of sins, for He is able to forgive sins and overlook mistakes. For He made an oath and declared thus: _"I live, says the Lord. I do not desire the death of the sinner until he repents from his evil way and lives" (Ez. 13:23)_. + +
+ +May we not be tested beyond what we can bear, and may we have indestructible peace that is not of this world. \ No newline at end of file