{{site_title}}

{{ frontmatter.title}}

{% for tag in frontmatter.tags %}
{{ tag }}
{% endfor %}
{{ content | add_heading_ids | safe }}
{% if toc %}

ON THIS PAGE

{% macro render_toc(items, level=0) %}
{% for key, item in items.items() %}
{{ item.title }} {% if item.children %} {{ render_toc(item.children, level + 1) }} {% endif %}
{% endfor %}
{% endmacro %} {{ render_toc(toc.headings) }} {% endif %}