{% extends "base.html" %} {% block content %} {%- set date_format = macros_translate::translate(key="date_format", default="%B %d, %Y", language_strings=language_strings) -%} {%- set date_locale = macros_translate::translate(key="date_locale", default="en_US", language_strings=language_strings) -%} {%- set rel_attributes = macros_rel_attributes::rel_attributes() | trim -%} {%- if page.extra.toc_ordered or section.extra.toc_ordered or config.extra.toc_ordered -%} {%- set list_element = "ol" -%} {%- else -%} {%- set list_element = "ul" -%} {%- endif -%}
{%- if page.extra.banner -%} {%- endif -%}
{%- if page.date -%}

{%- if page.updated -%} {{ config.extra.separator | default(value="•") }} {%- endif -%}

{%- endif -%}

{{ page.title }}

{%- if page.authors or config.extra.show_reading_time -%}

{%- if page.authors -%} {% include "partials/authors.html" -%} {%- if config.extra.show_reading_time -%} {{ config.extra.separator | default(value="•") }} {%- endif -%} {%- endif -%} {%- if config.extra.show_reading_time -%} {{ macros_translate::translate(key="minutes_read", number=page.reading_time, default="$NUMBER minute read", language_strings=language_strings) }} {%- if page.taxonomies -%} {{ config.extra.separator | default(value="•") }} {%- endif -%} {%- endif -%}

{%- endif -%} {%- if page.taxonomies -%} {%- for name, taxon in page.taxonomies %} {%- endfor -%} {%- endif %}
{%- if page.extra.toc and page.toc | length > 0 -%}
{{ macros_translate::translate(key="table_of_contents", default="Table of Contents", language_strings=language_strings) }}
<{{ list_element }}> {%- for h1 in page.toc -%}
  • {{ h1.title }} {%- if h1.children -%} <{{ list_element }}> {%- for h2 in h1.children -%}
  • {{ h2.title }}
  • {%- endfor -%} {%- endif -%} {%- endfor -%}
    {%- endif -%} {%- if config.extra.show_backlinks and page.backlinks | length > 0 -%} {%- endif -%} {%- if config.extra.show_share_button -%} {%- endif -%} {%- if config.extra.issues_url -%} {%- endif -%}
    {%- include "partials/statements.html" -%} {%- if page.extra.toc_inline -%} {%- include "partials/toc.html" -%} {%- elif config.extra.toc_inline -%} {%- include "partials/toc.html" -%} {%- endif -%} {{ page.content | safe }}
    {%- if page.extra.comments.id -%} {%- include "partials/comments.html" -%} {%- endif -%} {%- if page.lower or page.higher -%}
    {%- endif -%} {% endblock content %}