{% if meta %}
{% endif %}
{{ meta.title }}
{{ content | add_heading_ids | safe }}
{% if backlinks and backlinks.backlinks %}
BACKLINKS
{% for backlink in backlinks.backlinks %}
{% endfor %}
{% endif %}
{% if toc %}
ON THIS PAGE
{% macro render_toc(items, level=0) %}
{% for key, item in items.items() %}
{% endmacro %}
{{ render_toc(toc.headings) }}
{% endif %}
{{ item.title }}
{% if item.children %}
{{ render_toc(item.children, level + 1) }}
{% endif %}
{% endfor %}
{% if backlinks and backlinks.backlinks %}
BACKLINKS
{% for backlink in backlinks.backlinks %}
{% endfor %}
{% endif %}