{% extends "_templates_/base.html" %} {% block main %}

{{ content.title }}

{% if content.front_matter['hide-toc'] is not undefined and content.front_matter['hide-toc'] %} {% endif %} {{ markdown.html }}
{% endblock %} {% macro list_toc(toc, level=0, max_level=2) -%}
    {%- for section in toc %}
  1. {{ section.title }} {%- if level <= max_level and section|length %} {{ list_toc(section, level+1, max_level) }} {%- endif %}
  2. {% endfor -%}
{%- endmacro %}