Prepend feature image to RSS post
This commit is contained in:
parent
95dac3d193
commit
6abe472d5b
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ module.exports = {
|
||||||
image: node.feature_image,
|
image: node.feature_image,
|
||||||
title: node.title,
|
title: node.title,
|
||||||
date: new Date(node.published_at || null),
|
date: new Date(node.published_at || null),
|
||||||
content: node.html,
|
content: '<img src="' + node.feature_image + '" style="height:auto;width:auto;" />' + node.html,
|
||||||
}),
|
}),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue