{% if page.collection == 'tracks' %} Play {{ page.common.title | xml_escape }} by {{ page.common.artist | xml_escape }} | {{ site.title | xml_escape }} {% elsif page.collection == 'posts' %} {% if page.category == 'releases' %} {% for album in site.albums %} {% if album.slug == page.album %} {% capture namelist %}{% for art in album.artists %}{{ art }}{% unless forloop.last %}, {% endunless %}{% endfor %}{% endcapture %} {% capture artist %}{{ namelist }}{% endcapture %} Play "{{ album.name | xml_escape }}" by {{ artist | xml_escape | uniq }} | {{ site.title | xml_escape }} {% for track in album.tracks %}{% endfor %} {% endif %}{% endfor %} {% elsif page.category == 'ramblings' %} {{ page.title }} | {{ site.title }} {% endif %} {% else %} {{ page.title }} | {{ site.title }} {% endif %}