Common tags:

References ({{ items|length }})

{% for tag in selected_tags %} {% endfor %}
{% if items %} {% for item in items %}
{{ item.title }}
{% if item.author is string %} {{ item.author }} {% elif item.author is iterable and item.author %} {{ item.author|join(', ') }} {% else %} Unknown author {% endif %}
Tags: {% for tag in item.tags %} {{ tag }} {% endfor %}
{% endfor %} {% else %}

No items found matching the selected tags.

{% endif %}