5-72

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

toc.html (778B)


      1 {#-
      2   This file was automatically generated - do not edit
      3 -#}
      4 {% set title = lang.t("toc.title") %}
      5 {% if config.mdx_configs.toc and config.mdx_configs.toc.title %}
      6   {% set title = config.mdx_configs.toc.title %}
      7 {% endif %}
      8 <nav class="md-nav md-nav--secondary" aria-label="{{ title }}">
      9   {% set toc = page.toc %}
     10   {% set first = toc | first %}
     11   {% if first and first.level == 1 %}
     12     {% set toc = first.children %}
     13   {% endif %}
     14   {% if toc %}
     15     <label class="md-nav__title" for="__toc">
     16       <span class="md-nav__icon md-icon"></span>
     17       {{ title }}
     18     </label>
     19     <ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
     20       {% for toc_item in toc %}
     21         {% include "partials/toc-item.html" %}
     22       {% endfor %}
     23     </ul>
     24   {% endif %}
     25 </nav>