{% assign projeto = include.project %} {% assign filter_instruments = "" %} {% assign filter_samples = "" %} {% for track in projeto.tracks %} {% if track.instruments %} {% for inst in track.instruments %} {% assign filter_instruments = filter_instruments | append: inst.instrument_name | append: "," %} {% endfor %} {% elsif track.instrument_name %} {% assign filter_instruments = filter_instruments | append: track.instrument_name | append: "," %} {% endif %} {% if track.sample %} {% for smp in track.sample %} {% assign filter_samples = filter_samples | append: smp.sample_name | append: "," %} {% endfor %} {% elsif track.sample_name %} {% assign filter_samples = filter_samples | append: track.sample_name | append: "," %} {% endif %} {% endfor %}
{% assign file_url = projeto.file | slugify %} {% assign page_url = '../projetos/' | append: file_url | append: '.html' %}

{{ projeto.file }}

{% if projeto.bpm %}
🎵 {{ projeto.bpm }} BPM
{% else %}
{% endif %}
{% if projeto.tags.plugin.size > 0 %} {{ projeto.tags.plugin.size }} plugins {% endif %} {% if filter_instruments.size > 0 %} Insts {% endif %}