{% macro content(page) %} {% set separator = config.extra.separator | default(value="•") %}
{{ page.title }}
{% if page.draft %} DRAFT {% endif %} {% if page.date %} {{ macros_format_date::format_date(date=page.date) }} {{ separator }} {% endif %} {{ page.reading_time }} min read {% if page.taxonomies and page.taxonomies.tags %} {% endif %}
{% if page.extra.tldr %}

TL;DR:

{{ page.extra.tldr }}

{% endif %} {# Optional table of contents #} {% if page.extra.toc | default(value=false) %} {% if page.toc %}

Table of Contents

    {% for h1 in page.toc %}
  • {{ h1.title }} {% if h1.children %}
      {% for h2 in h1.children %}
    • {{ h2.title }} {% if h2.children %} {% endif %}
    • {% endfor %}
    {% endif %}
  • {% endfor %}
{% endif %} {% endif %}
{{ page.content | safe }}
{% endmacro content %}