-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEATURE] Include comment link and authors in rss feed
- Loading branch information
1 parent
48f83e9
commit 2e1c159
Showing
2 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
<html xmlns:dc="http://purl.org/dc/elements/1.1/"> | ||
<f:spaceless> | ||
<item> | ||
<title>{post.title}</title> | ||
<description><f:if condition="{post.abstract}"><f:then>{post.abstract}</f:then><f:else>{post.description}</f:else></f:if></description> | ||
<link><blogvh:link.post post="{post}" returnUri="true" createAbsoluteUri="true" /></link> | ||
<f:if condition="{settings.comments.active} && {post.commentsActive}"> | ||
<comments><blogvh:link.post post="{post}" section="comments" returnUri="true" createAbsoluteUri="true" /></comments> | ||
</f:if> | ||
<pubDate><f:format.date date="{post.publishDate}" format="r" /></pubDate> | ||
<f:if condition="{post.authors}"> | ||
<f:for each="{post.authors}" as="author"> | ||
<dc:creator>{author.name}</dc:creator> | ||
</f:for> | ||
</f:if> | ||
<guid><blogvh:link.post post="{post}" returnUri="true" createAbsoluteUri="true" /></guid> | ||
<description><f:if condition="{post.abstract}"><f:then>{post.abstract}</f:then><f:else>{post.description}</f:else></f:if></description> | ||
</item> | ||
</f:spaceless> | ||
</html> |