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) }}