{% include sidebar.html %}
Projetos e seus instrumentos:
{% for projeto in site.data.all %}
{% assign file_url = projeto.file | downcase
| replace: ' ', '-'
| replace: 'ç', 'c'
| replace: 'ã', 'a'
| replace: 'á', 'a'
| replace: 'â', 'a'
| replace: 'é', 'e'
| replace: 'ê', 'e'
| replace: 'í', 'i'
| replace: 'ó', 'o'
| replace: 'ô', 'o'
| replace: 'õ', 'o'
| replace: 'ú', 'u' %}
{{ projeto.file }}
{% assign instruments_exibidos = "" %}
{% for track in projeto.tracks %}
{% if track.instruments %}
{% for instrument in track.instruments %}
{% unless instruments_exibidos contains instrument.instrument_name %}
{% capture instruments_exibidos %}{{ instruments_exibidos }},{{ instrument.instrument_name }}{% endcapture %}
{% assign instrument_slug = instrument.instrument_name %}
{{ instrument.instrument_name }}
{% endunless %}
{% endfor %}
{% endif %}
{% endfor %}
{% endfor %}