---
layout: default
title: '{{ page.sname }}'
ptitle: '{{ page.sname }}'
---
{{ page.position }}
Songs
{% assign filtered_songs = site.data.songs %}
{% for song in filtered_songs %}
{% assign found = false %}
{% for artist in song.artists %}
{% if artist == page.sname %}
{% assign found = true %}
{% endif %}
{% endfor %}
{% if found == false %} {% continue %} {% endif %}
- {{ song.artists | join: ", " }} - {{ song.sname }}
{% endfor %}