toc.html 578 B

123456789101112131415161718192021
  1. {% assign toc = content | toc %}
  2. {% if toc.size > 0 %}
  3. <h3>
  4. Table of Contents
  5. </h3>
  6. <div class="nav nav-vertical" id="toc">
  7. {% for item in toc %}
  8. <a href="#{{ item.id }}" class="nav-link{% if item.level == 3 %} ms-3{% endif %}">
  9. {{ item.text }}
  10. </a>
  11. {% endfor %}
  12. </div>
  13. {% endif %}
  14. <a href="https://r.tabler.io/illustrations" class="card card-sm mt-6 shadow-none" target="_blank">
  15. <div class="card-body">
  16. <img src="/img/banner-carbon.png" class="mb-3" alt="">
  17. <h4>{{ illustrations | size }} sleek illustrations for your startup's visual identity.</h4>
  18. </div>
  19. </a>