From: Christopher Coté Date: Fri, 17 Jan 2025 23:02:32 +0000 (-0500) Subject: fix rss with no description X-Git-Url: http://git.entropealabs.com/?a=commitdiff_plain;h=01008a6cc64de93b8a3260f9f347b39e1c7ea610;p=entropealabs.gitlab.io.git fix rss with no description --- diff --git a/public/index.html b/public/index.html index f23f394..3a404b4 100644 --- a/public/index.html +++ b/public/index.html @@ -125,7 +125,9 @@ } function post(el, cls){ - return `
+ let d = el.querySelector("description") + if(d.firstChild) { + return ``; + }else{ + return ``; + } } function atom(el, cls){