{% extends "base.html" %}
{% set pet_notebook_marker = page.jupyter_notebook | default(false) %}
{% set pet_notebook_contract = page.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 %}{{ page.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 %}
{% endblock content_header %}
{% block content %}{{ page.content }}{% endblock content %}
{% block content_footer %}{% set pet_footer_content = page %}{% include "includes/content-footer.html" %}{% endblock content_footer %}