mirror of
https://github.com/adulau/brouilleursdeblanc.git
synced 2024-11-21 17:47:10 +00:00
Move feed footer to an include
This commit is contained in:
parent
83f393b900
commit
8903cab9a5
2 changed files with 5 additions and 2 deletions
1
_includes/feed-footer.html
Normal file
1
_includes/feed-footer.html
Normal 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>
|
6
feed.xml
6
feed.xml
|
@ -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 }}
|
||||
<p><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a> was originally published by {{ author.name }} at <a href="{{ site.url }}">{{ site.title }}</a> on {{ post.date | date: "%B %d, %Y" }}.</p></content>
|
||||
<content type="html">
|
||||
{{ post.content | xml_escape }}
|
||||
{% include feed-footer.html %}
|
||||
</content>
|
||||
</entry>
|
||||
{% endfor %}
|
||||
</feed>
|
Loading…
Reference in a new issue