Add Post Tags to RSS Feed

Issue #1722
This commit is contained in:
Patrick Garman 2013-12-24 10:10:43 -06:00
parent aec94f2ad1
commit 0ffd045fc7

View File

@ -143,7 +143,8 @@ frontendControllers = {
title: _.escape(post.title),
guid: post.uuid,
url: siteUrl + '/' + post.slug + '/',
date: post.published_at
date: post.published_at,
categories: _.pluck(post.tags, 'name')
},
content = post.html;