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/fa9d4686bccc172209baf10ffe5cb3ca108eb4d0 only put the excerpt on the RSS, and add a link to the rest of the post --- diff --git a/ralf/_includes/post-feed.html b/ralf/_includes/post-feed.html index 18959ed..c9b7c84 100644 --- a/ralf/_includes/post-feed.html +++ b/ralf/_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 %}