{{ page.file }}
{% if page.file or page.bpm %}
{% if page.file %}
{% endif %}
{% if page.bpm %}
{% endif %}
📁 Arquivo: {{ page.file }}
🎵 BPM: {{ page.bpm }}
{% if page.tags %}
{% assign tags_vazias = true %}
{% for categoria in page.tags %}
{% if categoria[1].size > 0 %}
{% assign tags_vazias = false %}
{% endif %}
{% endfor %}
{% unless tags_vazias %}
{% endunless %}
{% endif %}
{% if page.tracks and page.tracks.size > 0 %}
{% endif %}
🎚️ Instrumentos
-
{% for track in page.tracks %}
{% assign tem_instr = false %}
{% if track.instruments and track.instruments.size > 0 %}
{% assign tem_instr = true %}
{% endif %}
{% if track.bassline_name or tem_instr %}
-
{% if track.bassline_name %}
🎼 {{ track.bassline_name }}
{% endif %} {% if tem_instr %}-
{% for instrument in track.instruments %}
{% if instrument.instrument_name %}
-
{% assign instrument_slug = instrument.instrument_name | replace: ' ', '+' %}
{{ instrument.instrument_name }}{% if instrument.audiofileprocessor and instrument.audiofileprocessor.src %} {% assign audio_filename_with_path = 'src/samples/' | append: instrument.audiofileprocessor.src %}{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
-
{% assign instrument_slug = instrument.instrument_name | replace: ' ', '+' %}
🛠️ Abra na Criação Colaborativa
{% comment %} CONSTRUÇÃO DA URL: 1. Usa o arquivo fonte (`page.file`) como parâmetro `project`. 2. Assume que a plataforma de criação está em `/creations/`. 3. Abre em uma nova aba (`target="_blank"`). {% endcomment %} {% assign creation_url = '/creations/?project=' | append: page.file | relative_url %} Abrir no MMPCreator
O link abrirá o projeto em uma nova aba para edição.
Arquivo: {{ page.file }}