diff --git a/config/filters/index.js b/config/filters/index.js
index e197bda3..2d7d4328 100644
--- a/config/filters/index.js
+++ b/config/filters/index.js
@@ -141,6 +141,9 @@ export default {
if (!string) return
return new Date(string)
},
+ oldPost: (date) => {
+ return DateTime.now().diff(DateTime.fromJSDate(new Date(date)), 'years').years > 3;
+ },
// feeds
normalizeEntries: (entries) => {
diff --git a/package.json b/package.json
index 5f91c5f8..27aaef3e 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "coryd.dev",
- "version": "4.5.3",
+ "version": "4.6.0",
"description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.",
"type": "module",
"scripts": {
diff --git a/src/_includes/partials/banner-old-post.liquid b/src/_includes/partials/banner-old-post.liquid
new file mode 100644
index 00000000..1d2704a0
--- /dev/null
+++ b/src/_includes/partials/banner-old-post.liquid
@@ -0,0 +1,12 @@
+{% assign isOldPost = date | oldPost %}
+{% if isOldPost %}
+ {% capture css %}
+ {% render "../../assets/styles/widgets/banner-old-post.css" %}
+ {% endcapture %}
+
+
+
{% tablericon "clock-x" "Old post" %} This post is over 3 years old. I've probably changed my mind since then and this could be out of date.
+
+{% endif %}
\ No newline at end of file
diff --git a/src/_includes/post.liquid b/src/_includes/post.liquid
index 2f149ed4..44e626e5 100644
--- a/src/_includes/post.liquid
+++ b/src/_includes/post.liquid
@@ -12,20 +12,12 @@ schema: blog