From: Ralf Jung Date: Sat, 2 Jan 2016 14:15:17 +0000 (+0100) Subject: only put the excerpt on the RSS, and add a link to the rest of the post X-Git-Url: https://git.ralfj.de/web.git/commitdiff_plain/74f472a67009a51819da18f5cb53b471a14ae1cf only put the excerpt on the RSS, and add a link to the rest of the post --- diff --git a/personal/_includes/post-feed.html b/personal/_includes/post-feed.html index 18959ed..c9b7c84 100644 --- a/personal/_includes/post-feed.html +++ b/personal/_includes/post-feed.html @@ -7,6 +7,12 @@ {% for cat in post.categories %} {% endfor %} - {{ post.content | xml_escape }} + + {% capture content %} + {{ post.excerpt }} +

Read more...

+ {% endcapture %} + {{ content | xml_escape }} +
{% endfor %}