{% include sidebar.html %}
Todos as Basslines Disponíveis
{% assign all_automation_string = "" %} {% for p in site.data.all %} {% for track in p.tracks %} {% if track.bassline %} {% for inst in track.bassline %} {% if inst.instrument_name and inst.instrument_name != "" %} {% unless all_automation_string contains inst.instrument_name %} {% assign all_automation_string = all_automation_string | append: inst.instrument_name | append: "|||" %} {% endunless %} {% endif %} {% endfor %} {% elsif track.instrument_name and track.instrument_name != "" %} {% unless all_automation_string contains track.instrument_name %} {% assign all_automation_string = all_automation_string | append: track.instrument_name | append: "|||" %} {% endunless %} {% endif %} {% endfor %} {% endfor %} {% assign unique_automation = all_automation_string | split: "|||" | sort %} {% for item in unique_automation %} {% if item != "" %} {{ item }} {% endif %} {% endfor %}

Clique para filtrar.

Filtro: (todos)

{% for projeto in site.data.all %} {% assign project_insts = "" %} {% for track in projeto.tracks %} {% if track.bassline %} {% for inst in track.bassline %} {% assign project_insts = project_insts | append: inst.instrument_name | append: "," %} {% endfor %} {% elsif track.instrument_name %} {% assign project_insts = project_insts | append: track.instrument_name | append: "," %} {% endif %} {% endfor %}
{% 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' %} {% assign page_url = '../mmp_pages/' | append: file_url | append: '.html' %}

{{ projeto.file }}

{% if projeto.bpm %}
🎵 {{ projeto.bpm }} BPM
{% else %}
{% endif %}
{% assign unique_proj_insts = project_insts | split: "," | uniq %} {% if unique_proj_insts.size > 0 %}
{% for item in unique_proj_insts %} {% if item != "" %} {{ item | truncate: 15 }} {% endif %} {% endfor %}
{% endif %}
{% endfor %}