make RSS boring standard
This commit is contained in:
parent
b52ab6a90e
commit
14c6ab6fa9
6
feed.xml
6
feed.xml
|
@ -38,15 +38,15 @@ title : To Setto Setto RSS Feed
|
|||
{% for post in site.posts limit: 7 %}
|
||||
<item>
|
||||
<title>{{ post.title | xml_escape }}</title>
|
||||
<link>{{ site.url }}{{ post.url }}?utm_source=RSS&utm_medium=RSS&utm_campaign={{ post.title | replace: ',','-' | replace: ' ', '-' | xml_escape }}</link>
|
||||
<link>{{ site.url }}{{ post.url }}?pk_campaign=RSS</link>
|
||||
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
|
||||
<description> <img src="{{ site.url }}{{ post.image }}" /> <br />{{ post.description | truncate: 150 | xml_escape }} {% if post.link %}<br />Full article on: <a href="{{ site.url }}{{ post.url }}">{{ site.url }}{{ post.url }}</a>{% endif %}</description>
|
||||
<description>{{ post.description | truncate: 200 | xml_escape }}</description>
|
||||
<category>Hi-Lights</category>
|
||||
<author>{{ site.social.mail | xml_escape }} ({{ site.social.name }})</author>
|
||||
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
|
||||
<itunes:author>{{ site.publisher.mail }}</itunes:author>
|
||||
<itunes:explicit>No</itunes:explicit>
|
||||
<itunes:subtitle>{{ post.description | truncate: 252 | xml_escape }}</itunes:subtitle>
|
||||
<itunes:subtitle>{{ post.description | truncate: 200 | xml_escape }}</itunes:subtitle>
|
||||
<itunes:summary>{{ post.description | xml_escape }}</itunes:summary>
|
||||
<itunes:keywords>{% for tags in post.tags %}{{ tags | xml_escape | strip_html }}{% unless forloop.last %}, {% endunless %}{% endfor %}</itunes:keywords>
|
||||
<itunes:image href="{{ site.url }}{{ post.image }}"/>
|
||||
|
|
Loading…
Reference in a new issue