Skip to content

Commit a777538

Browse files
committed
version 3.0 released
1 parent 8cd477a commit a777538

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

en/news_feed.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ layout: null
77
<title>{{ site.title | xml_escape }}</title>
88
<description>{{ site.description | xml_escape }}</description>
99
<link>{{ site.url }}{{ site.baseurl }}/</link>
10-
<link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml" />
10+
<link href="{{ "/en/news_feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml" />
1111
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
1212
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
1313
<generator>Jekyll v{{ jekyll.version }}</generator>
1414
{% for post in site.posts limit:10 %}
1515
{% if post.language == 'en' and post.category == 'blog' %}
1616
<item>
1717
<title>{{ post.title | xml_escape }}</title>
18-
<description>{{ post.content | xml_escape }}</description>
18+
<description>{{ post.excerpt | xml_escape }}</description>
1919
<media:content url="{{ site.url }}/img/{{ post.splash }}" type="image/jpeg"/>
2020
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
2121
<link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>

it/news_feed.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@ layout: null
77
<title>{{ site.title | xml_escape }}</title>
88
<description>{{ site.description | xml_escape }}</description>
99
<link>{{ site.url }}{{ site.baseurl }}/</link>
10-
<link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml" />
10+
<link href="{{ "/it/news_feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml" />
1111
<pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
1212
<lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
1313
<generator>Jekyll v{{ jekyll.version }}</generator>
1414
{% for post in site.posts limit:10 %}
1515
{% if post.language == 'it' and post.category == 'blog' %}
1616
<item>
1717
<title>{{ post.title | xml_escape }}</title>
18+
<excerpt>{{ post.excerpt | xml_escape }}</excerpt>
1819
<description>{{ post.content | xml_escape }}</description>
1920
<media:content url="{{ site.url }}/img/{{ post.splash }}" type="image/jpeg"/>
2021
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>

0 commit comments

Comments
 (0)