diff options
-rw-r--r-- | _layouts/postlist.html | 3 | ||||
-rw-r--r-- | _posts/2025-03-06-monitoring-with-uptime-kuma.md | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/_layouts/postlist.html b/_layouts/postlist.html index ee9dde6..b6b29ef 100644 --- a/_layouts/postlist.html +++ b/_layouts/postlist.html @@ -64,6 +64,9 @@ layout: default const ids = {{ news_ids }}; for (currId of ids) { const currentBanner = document.getElementById(currId); + if (!currentBanner) { + continue; + } const closeLink = currentBanner.firstElementChild; const currentNewsClosed = localStorage.getItem(currId+"closed"); if (currentNewsClosed === "true") { diff --git a/_posts/2025-03-06-monitoring-with-uptime-kuma.md b/_posts/2025-03-06-monitoring-with-uptime-kuma.md index bba7b50..eccb754 100644 --- a/_posts/2025-03-06-monitoring-with-uptime-kuma.md +++ b/_posts/2025-03-06-monitoring-with-uptime-kuma.md @@ -2,6 +2,7 @@ layout: post title: Monitoring with Uptime Kuma date: 2025-03-06 18:55 +0100 +lang: en --- [Recently](https://furry.engineer/@uvok/114026509150081909), I wanted to do add |