From 74f472a67009a51819da18f5cb53b471a14ae1cf Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Sat, 2 Jan 2016 15:15:17 +0100 Subject: [PATCH] only put the excerpt on the RSS, and add a link to the rest of the post --- personal/_includes/post-feed.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 %} -- 2.30.2