1<nav class="toc" aria-labelledby="toc-header"> 2 <h2 class="text-ctp-overlay1 mb-1" id="toc-header">Table of Contents</h2> 3 <ol class="toc-l1"> 4 {{ for item of toc }} 5 <li> 6 <a href="#{{ item.slug }}">{{ item.text }}</a> 7 8 {{ if item.children.length }} 9 <ul> 10 {{ for child of item.children }} 11 <li class="toc-l2"> 12 <a href="#{{ child.slug }}">{{ child.text }}</a> 13 </li> 14 {{ /for }} 15 </ul> 16 {{ /if }} 17 </li> 18 {{ /for }} 19 </ol> 20</nav>