fix: feed format
This commit is contained in:
parent
8416d6a13e
commit
6598367cfa
1 changed files with 2 additions and 2 deletions
|
@ -10,8 +10,8 @@ permalink: /feed.xml
|
||||||
{% block entries %}
|
{% block entries %}
|
||||||
{% assign posts = collections.posts | reverse %}
|
{% assign posts = collections.posts | reverse %}
|
||||||
{% for post in posts limit: 15 %}
|
{% for post in posts limit: 15 %}
|
||||||
{% capture entry_link %}?utm_source=all_posts_feed&utm_medium=rss&utm_campaign=syndication
|
{% capture entry_link %}
|
||||||
{{ site.url }}{{ post.url }}
|
{{ site.url }}{{ post.url }}?utm_source=all_posts_feed&utm_medium=rss&utm_campaign=syndication
|
||||||
{% endcapture %}
|
{% endcapture %}
|
||||||
<entry>
|
<entry>
|
||||||
<title>{{ post.data.title }}</title>
|
<title>{{ post.data.title }}</title>
|
||||||
|
|
Reference in a new issue