Explorar Projetos

Use os filtros laterais para combinar critérios (ex: Bassline Reese + 140 BPM).

{% for item in unique_bpm %} {% if item != "" %}
{% endif %} {% endfor %}

Instrumentos
{% for item in unique_instruments %} {% if item != "" %} {% endif %} {% endfor %}

Plugins
{% for item in unique_plugins %} {% if item != "" %} {% endif %} {% endfor %}

Bassline
{% for item in unique_bassline %} {% if item != "" %} {% endif %} {% endfor %}

Automação
{% for item in unique_automation %} {% if item != "" %} {% endif %} {% endfor %}

Samples
{% for item in unique_samples %} {% if item != "" %} {% endif %} {% endfor %}
{% for projeto in site.data.all %} {% assign project_insts = "" %} {% assign project_samples = "" %} {% for track in projeto.tracks %} {% if track.instruments %} {% for inst in track.instruments %}{% 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 %} {% if track.sample %} {% for smp in track.sample %}{% assign project_samples = project_samples | append: smp.sample_name | append: "," %}{% endfor %} {% elsif track.sample_name %} {% assign project_samples = project_samples | append: track.sample_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 = '../projetos/' | append: file_url | append: '.html' %}

{{ projeto.file }}

{% if projeto.bpm %}
🎵 {{ projeto.bpm }} BPM
{% else %}
{% endif %}
Ver {% assign creation_url = '/mmpSearch/creation.html?project=' | append: projeto.file %} {% assign embed_url = creation_url | append: '&embed=true' %} Editar
{% endfor %}