# HG changeset patch # User Goffi # Date 1596400231 -7200 # Node ID ae365c036a580ca74bc05cfba10ebb9722a22228 # Parent 2c282c244a3e08e0aec87abaa9031bac5b00016f bulma (blog/item): title are now clickable like in default theme diff -r 2c282c244a3e -r ae365c036a58 sat_templates/templates/bulma/blog/item.html --- a/sat_templates/templates/bulma/blog/item.html Sun Aug 02 20:58:21 2020 +0200 +++ b/sat_templates/templates/bulma/blog/item.html Sun Aug 02 22:30:31 2020 +0200 @@ -25,8 +25,15 @@ {% endif %}
{% set title = item.title_xhtml|safe or item.title%} + {% set item_http_uri = items_http_uri.get(item.id) if items_http_uri is defined else none %} {% if title %} -

{{title}}

+

+ {% if item_http_uri %} + {{title}} + {% else %} + {{title}} + {% endif %} +

{% endif %}