Prepend feature image to RSS post

This commit is contained in:
Hippo 2020-03-31 19:00:04 +05:30
parent 95dac3d193
commit 6abe472d5b
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ module.exports = {
image: node.feature_image,
title: node.title,
date: new Date(node.published_at || null),
content: node.html,
content: '<img src="' + node.feature_image + '" style="height:auto;width:auto;" />' + node.html,
}),
},
},