{% trans language=locale.language_name %}This message is not in {{language}}, click to display anyway{% endtrans %}
{% block blog_title scoped %}
{% set title = item.title_xhtml|safe or item.title or '' %}
{% if item_http_uri %}
{{title}}
{% else %}
{{title}}
{% endif %}
{% endblock %}
{% block metadata scoped %}
{% if item.tags %}
{% if tags_http_uri is defined %}
{% for tag in item.tags %}
{{tag}}
{% endfor %}
{% else %}
{% for tag in item.tags %}
{{tag}}
{% endfor %}
{% endif %}
{% endif %}
{% endblock metadata %}
{% endblock header %}
{% block content %}
{{- item.content_xhtml|safe or item.content|urlize or '' -}}
{% endblock content %}