Skip to content

Commit

Permalink
Merge pull request #71 from soxyl/feed-author
Browse files Browse the repository at this point in the history
Author Override for the Feed
  • Loading branch information
mmistakes committed Aug 9, 2014
2 parents f0d24a5 + 4bfaa6c commit 027176b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions feed.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ sitemap: false
{% if site.owner.email %}<email>{{ site.owner.email }}</email>{% endif %}
</author>
{% for post in site.posts limit:20 %}

{% if post.author %}
{% assign author = site.data.authors[post.author] %}
{% else %}
{% assign author = site.owner %}
{% endif %}
<entry>
<title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
<link rel="alternate" type="text/html" href="{{ site.url }}{{ post.url }}" />
Expand All @@ -26,12 +30,12 @@ sitemap: false
{% else %}<published>{{ post.date | date_to_xmlschema }}</published>
<updated>{{ post.date | date_to_xmlschema }}</updated>{% endif %}
<author>
<name>{{ site.owner.name }}</name>
<name>{{ author.name }}</name>
<uri>{{ site.url }}</uri>
<email>{{ site.owner.email }}</email>
<email>{{ author.email }}</email>
</author>
<content type="html">{{ post.content | xml_escape }}
&lt;p&gt;&lt;a href=&quot;{{ site.url }}{{ post.url }}&quot;&gt;{{ post.title }}&lt;/a&gt; was originally published by {{ site.owner.name }} at &lt;a href=&quot;{{ site.url }}&quot;&gt;{{ site.title }}&lt;/a&gt; on {{ post.date | date: "%B %d, %Y" }}.&lt;/p&gt;</content>
&lt;p&gt;&lt;a href=&quot;{{ site.url }}{{ post.url }}&quot;&gt;{{ post.title }}&lt;/a&gt; was originally published by {{ author.name }} at &lt;a href=&quot;{{ site.url }}&quot;&gt;{{ site.title }}&lt;/a&gt; on {{ post.date | date: "%B %d, %Y" }}.&lt;/p&gt;</content>
</entry>
{% endfor %}
</feed>

0 comments on commit 027176b

Please sign in to comment.