diff --git a/atom.xml b/atom.xml index ff6018c9e..a0ea82c7b 100644 --- a/atom.xml +++ b/atom.xml @@ -32,6 +32,10 @@ layout: {% include away_mode.html %} {% endif %} + {% if post.todayInOneSentence and post.todayInOneSentence != '' %} + <p><em><strong>Today in one sentence</strong>: {{ post.todayInOneSentence }}</em></p> + {% endif %} + {{ post.content | xml_escape }} <p><strong>Support today's essential newsletter and resist the daily shock and awe:</strong> <a href="{{ site.url }}{{ site.baseurl }}/membership">Become a member</a> </p> diff --git a/rss.xml b/rss.xml index a6f2877be..9b1eca77d 100644 --- a/rss.xml +++ b/rss.xml @@ -19,14 +19,21 @@ layout: {% for post in site.posts limit:50 %} {{ post.title | xml_escape }}: {{ post.description | xml_escape }} + {% assign desc = post.content %} + {% if post.todayInOneSentence and post.todayInOneSentence != '' %} + {% assign desc = post.todayInOneSentence %} + {% endif %} - Subscribe: Get the Daily Update in your inbox for free

]]> + Subscribe: Get the Daily Update in your inbox for free

]]>
{% if site.is_away_mode == true %} {% include away_mode.html %} {% endif %} + {% if post.todayInOneSentence and post.todayInOneSentence != '' %} +

Today in one sentence: {{ post.todayInOneSentence }}

+ {% endif %} {{ post.content }}

Subscribe: Get the Daily Update in your inbox for free

Support today's essential newsletter and resist the daily shock and awe: Become a member

]]>
{{ site.author.email }} ({{ site.author.name }})