{% for album in include.list %}
{{ album.title }} {{ album.artist }}

{{ album.title }}

by {{ album.artist }}

{% if album.tags %} {% for tag in album.tags %} {{ tag }} {% endfor %} {% else %} {{ album.release_date | date: "%b %-d, %Y" }} {% endif %}
{% endfor %}