{% extends "base.html" %} {% set pet_notebook_marker = article.jupyter_notebook | default(false) %} {% set pet_notebook_contract = article.notebook_html_contract | default('') %} {% set pet_is_notebook = (pet_notebook_marker is sameas true or (pet_notebook_marker is string and (pet_notebook_marker | lower) == 'true')) and pet_notebook_contract == 'nbconvert-basic.v1' %} {% block title %}{{ article.title | striptags | forceescape }} — {{ SITENAME | forceescape }}{% endblock title %} {% block body_class %}{{ super() }}{% if pet_is_notebook %} pet-notebook-document{% endif %}{% endblock body_class %} {% block page_class %}{{ super() }} pet-content-page{% endblock page_class %} {% block content_header %}

{{ article.title | striptags | forceescape }}

{% set pet_metadata_content = article %}{% include "includes/article-metadata.html" %} {% set pet_translation_content = article %}{% include "includes/translations.html" %} {% set pet_status_content = article %}{% include "includes/content-status.html" %}
{% endblock content_header %} {% block content %}
{{ article.content }}
{% endblock content %} {% block content_footer %}{% set pet_footer_content = article %}{% include "includes/content-footer.html" %}{% endblock content_footer %}