From fa9d4686bccc172209baf10ffe5cb3ca108eb4d0 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 --- ralf/_includes/post-feed.html | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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 %} -- 2.30.2