{% block item %} {% if item.language and locale and locale.language != item.language %} {# we may display items in different language in a specific way #} {% set other_lang = " other_lang" %} {% endif %}
{# following message is displayed if item lang is different from page locale #} {% if other_lang is defined %}

{% trans language=locale.language_name %}This message is not in {{language}}, click to display anyway{% endtrans %}

{% endif %} {# we put a reduce button at the top #}

{% trans %}Click to reduce…{% endtrans %}

{% block header %}
{% block blog_title %}{{ item.title_xhtml or item.title or '' }}{% endblock %}
{% block metadata %} {% endblock metadata %} {% endblock header %}
{% block content %} {{ item.content_xhtml or item.content or ''}} {% endblock content %}
{# and the bottom button to expand/reduce the article #}

{% trans %}Click to expand…{% endtrans %} {% trans %}Click to reduce…{% endtrans %}

{% endblock item %}