5-72

5-72.com helps novice musicians master sound engineering by analyzing the FX chains of world-famous artists
Log | Files | Refs

tags.html (486B)


      1 {#-
      2   This file was automatically generated - do not edit
      3 -#}
      4 {% if page.meta and page.meta.hide %}
      5   {% set hidden = "hidden" if "tags" in page.meta.hide %}
      6 {% endif %}
      7 {% if tags %}
      8   <nav class="md-tags" {{ hidden }}>
      9     {% for tag in tags %}
     10       {% if tag.url %}
     11         <a href="{{ tag.url | url }}" class="md-tag">
     12           {{ tag.name }}
     13         </a>
     14       {% else %}
     15         <span class="md-tag">{{ tag.name }}</span>
     16       {% endif %}
     17     {% endfor %}
     18   </nav>
     19 {% endif %}