{% extends "basic/layout.html" %}
{% set html5_doctype = True %}
{% block css %}
{{ super() }}
{# Allow custom css style import for specific pages #}
{% if 'custom-css' in meta %}
{% set link = '_static/css/' + meta['custom-css'] %}
{% endif %}
{% endblock %}
{% block scripts %}
{# Before the super call to be loaded before custom files using React & Immutable #}
{{ super() }}
{# NOTE: Sphinx basic theme already imports JQuery, underscore and doctools by default.
For some reason JQuery is not found for the custom code below if we do not reimport it... #}
{# TODO EDI boostrap beta cdn ??? Isn't there a stable CDN ? It looks like this cdn won't exist forever :D #}
{% endblock %}
{% block linktags %}
{% for code, url in language_codes %}
{%- endfor %}
{{ super() }}
{% endblock %}
{#
Google analytics key logic.
We do not want to call super here since our custom footer logic is defined in the content block.
#}
{% block footer %}
{%- if google_analytics_key -%}
{%- endif -%}
{% endblock %}
{% block header %}