{% extends "second-edition/base.html" %} {% import "macros.html" as macros %} {% block title %}{{ page.title }} | {{ config.title }}{% endblock title %} {% block header %} {% if lang != "en" -%} {%- else -%} {%- endif %} {% endblock header %} {% block description -%} {{ page.summary | safe | striptags }} {%- endblock description %} {% block main %}

{{ page.title }}

{% if page.extra.warning %}
{% if page.extra.warning_short %} {{ page.extra.warning_short }} {% endif %} {{ page.extra.warning | markdown(inline=true) | safe }}
{% endif %} {%- if page.lang != "en" %}
{% set translations = page.translations | filter(attribute="lang", value="en") %} {% set original = translations.0 %} Translated Content: This is a community translation of the {{ original.title }} post. It might be incomplete, outdated or contain errors. Please report any issues!
{% endif %} {{ page.content | replace(from="", to=macros::toc(toc=page.toc)) | safe }}

Support Me

{% include "support.html" %}
{% endblock main %} {% block after_main %}

Comments

{{ macros::utterances() }}
{% endblock after_main %}