# HG changeset patch # User Goffi # Date 1596437090 -7200 # Node ID 7448aac005a1dc7e0ff8a8f7e6778c3ffdd41cf8 # Parent ae365c036a580ca74bc05cfba10ebb9722a22228 bulma (blog/atom.xml): fixed double escaping diff -r ae365c036a58 -r 7448aac005a1 sat_templates/templates/bulma/blog/atom.xml --- a/sat_templates/templates/bulma/blog/atom.xml Sun Aug 02 22:30:31 2020 +0200 +++ b/sat_templates/templates/bulma/blog/atom.xml Mon Aug 03 08:44:50 2020 +0200 @@ -15,7 +15,7 @@ {% for item in blog_items['items'] %} {% if item.title_xhtml %} - {{item.title_xhtml}} + {{item.title_xhtml|safe}} {% else %} {{item.title|default(item.content|truncate(80, True, '…'), True)}} {% endif %} @@ -34,7 +34,7 @@ {% if item.content_xhtml %}
- {{item.content_xhtml}} + {{item.content_xhtml|safe}}
{% else %}