<%_ if (plugins.posts) { _%> **[✒️ Recent posts from <%= plugins.posts?.source %>](<%= plugins.posts?.link %>)** <%_ if (plugins.posts.error) { _%> <%= plugins.posts.error.message _%> <%_ } else if ((plugins.posts.list.length)&&(plugins.posts.descriptions)||(plugins.posts.covers)) { _%> <%_ for (const {title, date, link, description = "", image} of plugins.posts.list) { _%> <%_ if (plugins.posts.covers) { _%> <%_ } _%>
<%= title.trim() %>
<%= description %>
Published on <%= f.date(new Date(date), {date:true, timeZone:config.timezone?.name}) %>
<%_ } _%> <%_ } else if (plugins.posts.list.length) { _%> <%_ for (const {title, date, link} of plugins.posts.list) { _%> * [<%= title.trim() %>](<%= link %>) * *Published on <%= f.date(new Date(date), {date:true, timeZone:config.timezone?.name}) %>* <%_ } _%> <%_ } else { _%> No recent posts <%_ } _%> <%_ } _%>