{%- extends "pydata_sphinx_theme/layout.html" -%}
{# Append our custom CSS after the bootstrap stylesheet so we can override where necessary #}
{%- block css %}
{{ super() }}
{% if page_assets is defined and page_assets|length > 0 %}
{% set assets = page_assets.get(pagename, {}) %}
{% if assets.get("needs_datatables") %}
{% endif %}
{% endif %}
{% if theme_show_breadcrumbs %}
{% endif %}
{%- endblock %}
{% block docs_navbar %}
{{ super() }}
{% if theme_switcher %}
{% include 'components/announcement_version.html' %}
{% endif %}
{% endblock %}
{%- block content %}
{{ super() }}
{% if theme_use_ansys_search %}
{%- include "components/ast-search-button.html" %}
{% endif %}
{%- endblock %}
{%- block scripts_end %}
{{ super() }}
{% if page_assets is defined and page_assets|length > 0 %}
{% set assets = page_assets.get(pagename, {}) %}
{% if assets.get("needs_datatables") %}
{% endif %}
{% endif %}
{%- endblock %}