make RSS boring standard
This commit is contained in:
parent
41ef02c7bd
commit
7b0380942a
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -26,3 +26,5 @@ _data/.~lock.*.csv
|
|||
## No cover artwork or Mp3
|
||||
*.mp3
|
||||
assets/albums/
|
||||
media/
|
||||
|
||||
|
|
4
rss.xml
4
rss.xml
|
@ -43,13 +43,13 @@ title : Sakrecoer RSS Feed
|
|||
<title>{{ post.title | xml_escape }}</title>
|
||||
<link>{{ site.url }}{{ post.url }}</link>
|
||||
<guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>
|
||||
<description> <img src="{{ site.url }}{{ post.image }}" /> <br />{{ post.description | truncate: 150 | xml_escape }}</description>
|
||||
<description>{{ post.description | xml_escape | truncate: 200 }}</description>
|
||||
<category>Hi-Lights</category>
|
||||
<author>{{ post.author | xml_escape }}</author>
|
||||
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
|
||||
<itunes:author>{{ post.artist | xml_escape }}</itunes:author>
|
||||
<itunes:explicit>No</itunes:explicit>
|
||||
<itunes:subtitle>{{ post.description | strip_html | truncate: 252 | xml_escape }}</itunes:subtitle>
|
||||
<itunes:subtitle>{{ post.description | xml_escape | truncate: 200 }}</itunes:subtitle>
|
||||
<itunes:summary>{{ post.description | xml_escape }}</itunes:summary>
|
||||
<itunes:keywords>{% for tags in post.tags %}{{ tags | strip_html | xml_escape }}{% unless forloop.last %}, {% endunless %}{% endfor %}</itunes:keywords>
|
||||
<itunes:image href="{{ site.url }}{{ post.image }}"/>
|
||||
|
|
Loading…
Reference in a new issue