From 5e24e8f234e81ff96fde35904f778e1ec5f96900 Mon Sep 17 00:00:00 2001 From: N-Upchurch Date: Mon, 21 Aug 2023 18:26:16 -0500 Subject: [PATCH] Fix post image URL and add description --- content/feed/feed.njk | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/content/feed/feed.njk b/content/feed/feed.njk index 84c8e84..f836e6f 100755 --- a/content/feed/feed.njk +++ b/content/feed/feed.njk @@ -17,16 +17,17 @@ permalink: /feed/feed.xml {%- for post in collections.posts | reverse %} {% set absolutePostUrl %}{{ post.url | htmlBaseUrl(metadata.url) }}{% endset %} - {% if post.image-url %}{% set imageURL %}{{ post.image-url | htmlBaseUrl(metadata.url) }}{% endset %}{% endif %} + {% if post.data.imageURL %}{% set imageURL %}{{ post.data.imageURL | htmlBaseUrl(metadata.url) }}{% endset %}{% endif %} {% set defaultImageURL %}{{ metadata.defaultPostImageURL | htmlBaseUrl(metadata.url) }}{% endset %} {{ post.data.title }} + {{ post.data.description | truncate(150) }} {{ post.date | dateToRfc3339 }} {{ absolutePostUrl }} - {% if post.image-url %}{{ imageURL }}{% else %}{{ defaultImageURL }}{% endif %} - {% if post.image-alt %}{{ post.image-alt }}{% else %}{{ metadata.defaultPostImageAlt }}{% endif %} + {% if post.data.imageURL %}{{ imageURL }}{% else %}{{ defaultImageURL }}{% endif %} + {% if post.data.imageAlt %}{{ post.data.imageAlt }}{% else %}{{ metadata.defaultPostImageAlt }}{% endif %} {{ post.templateContent | transformWithHtmlBase(absolutePostUrl, post.url) }}