{{ item.title or "Untitled" }}
{% include "tags.html" with context %}
{% if tags_all %}
{% endif %}
Quick add tag:
{% for t in tags_all %}
{% set name = t.name if t.name is defined else t['name'] %}
{% endfor %}
{% if item.content_html %}
{{ item.content_html|safe }}
{% else %}
{{ item.content_text }}
{% endif %}