]> git.ipfire.org Git - thirdparty/bulma.git/commitdiff
Make feed entries show full content (#1577)
authormaiki <maiki@interi.org>
Sat, 6 Jan 2018 22:27:53 +0000 (14:27 -0800)
committerJeremy Thomas <bbxdesign@gmail.com>
Sat, 6 Jan 2018 22:27:53 +0000 (22:27 +0000)
Feed is configured to show introduction text rather than the full content of each post. Now it will always show the full content for each entry.

docs/atom.xml

index fefd43272373f09cae83054bcde7259960f65670..a35528f4e4731ab496fa3fd673476767fb7a97fa 100644 (file)
         {% if post.author.name %}
           <dc:creator>{{ post.author.name | xml_escape }}</dc:creator>
         {% endif %}
-        {% if post.introduction %}
-          <description>{{ post.introduction | xml_escape }}</description>
-        {% else %}
-          <description>{{ post.content | xml_escape }}</description>
-        {% endif %}
+        <description>{{ post.content | xml_escape }}</description>
         <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
         <link>{{ site.url }}{{ post.url }}</link>
         <guid isPermaLink="true">{{ site.url }}{{ post.url }}</guid>