Move feed footer to an include

This commit is contained in:
Michael Rose 2015-01-30 09:37:42 -05:00
parent 7811c598b0
commit 3b2e58c7d8
2 changed files with 5 additions and 2 deletions

View file

@ -0,0 +1 @@
<p><a href="{{ site.url }}{{ post.url }}">{{ post.title | xml_escape }}</a> was originally published by {{ site.owner.name }} at <a href="{{ site.url }}">{{ site.title }}</a> on {{ post.date | date: "%B %d, %Y" }}.</p>

View file

@ -34,8 +34,10 @@ sitemap: false
<uri>{{ site.url }}</uri>
{% if author.email %}<email>{{ author.email }}</email>{% endif %}
</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 {{ 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>
<content type="html">
{{ post.content | xml_escape }}
{% include _feed-footer.html %}
</content>
</entry>
{% endfor %}
</feed>