{% extends "_base.html" %} {% block page %}prose-page{% endblock page %} {% block lang -%} {%- if section.extra.lang %}{{section.extra.lang}}{% else %}{{page.lang}}{% endif -%} {%- endblock lang %} {% block title %}{{ section.title }}{% endblock title %} {% block desc %} {% endblock desc %} {% block head %} {% if config.markdown.highlight_theme == "css" %} {% endif %} {% if section.extra.math %} {% endif %} {% endblock head %} {% block content %} {% include "_header.html" %}
{% if section.extra.copy is defined %}{% set allow_copy = section.extra.copy %}{% else %}{% set allow_copy = config.extra.copy %}{% endif %} {% if allow_copy %} {% set copy_icon = load_data(path="static/icon/copy.svg") %} {% set check_icon = load_data(path="static/icon/check.svg") %} {% endif %} {% set backlink_icon = load_data(path="static/icon/backlink.svg") %}
{{ section.content | safe }}
{% if section.extra.comment is defined %}{% set show_comment = section.extra.comment %}{% else %}{% set show_comment = config.extra.comment %}{% endif %} {% if show_comment %}
{% include "_giscus_script.html" %} {% endif %}
{% include "_footer.html" %}
{% endblock content %} {% block script %} {% if section.extra.mermaid %} {% endif %} {% endblock script %}