{# Import the theme's layout #}
{% extends "bootstrap/layout.html" %}
{# Extra JS files #}
{%- block scripts %}
{{ super() }}
{%- endblock %}
{# Custom CSS overrides #}
{% set css_files = css_files + ['_static/sunpy_style.css'] %}
{% macro seo_title() -%}
{% if ishome -%}
{{ docstitle|striptags|e }}
{%- else -%}
{{ title|striptags|e }} | {{ docstitle|striptags|e }}
{%- endif %}
{%- endmacro %}
{%- macro description() -%}
{{ (seo_description or theme_seo_description )|striptags|e }}
{%- endmacro -%}
{%- block extrahead -%}
{{ super() }}
{% if not version_slug in to_be_indexed %}
{% endif %}
{%- endblock %}
{%- block footer %}
{% include "footer.html" %}
{%- endblock %}