{% 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 | truncate(length=150) }} {%- endblock description %} {% block toc_aside %} {% endblock toc_aside %} {% 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!

{%- if page.extra.translators %}

Translation by {% for user in page.extra.translators -%} {%- if not loop.first -%} {%- if loop.last %}, and {% else %}, {% endif -%} {%- endif -%} @{{user}} {%- endfor %}.

{% endif -%}
{% endif %} {{ page.content | replace(from="", to=macros::toc(toc=page.toc)) | safe }}

Support Me

{% include "support.html" %}


Comments

{%- if page.lang != "en" %}

Please leave your comments in English if possible.

{% endif %} {{ macros::utterances() }}
{% endblock main %}