{% if currentItem.author %} By:
{{ currentItem.author.link() }}
{% endif %}
{% if currentItem.contributors %} Contributors:
{% for sweet_dude in currentItem.contributors %}
{{ sweet_dude.link() }}{% if loop.length > 1 %}{% if loop.revindex0 > 1 %},{% elif loop.revindex0 == 1 %} and {% endif %}{% endif %}
{% endfor %}
{% endif %}
{% if use_local_metadata and currentItem.date_added %}
Date added: {{ currentItem.date_added.isoformat() }}
{% endif %}
{% if currentItem.publication_date %} First published: {{ currentItem.publication_date }}
{% endif %}
{% if currentItem.source %} Source: {{ currentItem.source }}
{% endif %}
{% if currentItem.rights %} Rights Claimed*: {{ currentItem.rights }}
{% endif %}
{% if currentItem.info %} {{ currentItem.info }}
{% endif %}
{% if currentItem.tags %} Tags:
{% for tag in currentItem.tags %}
{{ tag.name }}
{% endfor %}
{% endif %}