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/
---
+
+ +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