{% include sidebar.html %}
Todos os Plugins Disponíveis
{% assign all_items_string = "" %} {% for p in site.data.all %} {% if p.tags.plugin %} {% for item in p.tags.plugin %} {% if item != "" %} {% unless all_items_string contains item %} {% assign all_items_string = all_items_string | append: item | append: "|||" %} {% endunless %} {% endif %} {% endfor %} {% endif %} {% endfor %} {% assign unique_items = all_items_string | split: "|||" | sort %} {% for item in unique_items %} {% if item != "" %} {{ item }} {% endif %} {% endfor %}

Filtro: (todos)

{% for projeto in site.data.all %} {% if projeto.tags.TAG contains "plugin" %}
{% 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 %}
{% if projeto.tags.plugin and projeto.tags.plugin.size > 0 %}
{% for item in projeto.tags.plugin %} {% if item != "" %} {{ item | truncate: 15 }} {% endif %} {% endfor %}
{% endif %}
{% endif %} {% endfor %}