{# Base template for edX-specific pages. #} {% load compress %} {% load core_extras %} {% load i18n %} {% load static %} {% block title %}{% endblock title %} {% compress css %} {% if main_css %} {% else %} {% endif %} {% endcompress %} {% compress css %} {# This block is separated to better support browser caching. #} {% block stylesheets %} {% endblock %} {% endcompress %} {% block skip_link %} {% endblock skip_link %} {% block navbar %} {% include 'edx/partials/_staff_navbar.html' %} {% endblock navbar %} {% block info_message %} {% include 'edx/partials/_info_message.html' %} {% endblock info_message %} {% block content %} {% endblock content %} {% block footer %} {% include 'edx/footer.html' %} {% endblock footer %} {# Translation support for JavaScript strings. #} {% compress js %} Note: django-compressor does not recognize the data-main attribute. Load the main script separately. {% endcompress %} {% if optimizely_snippet_src %} {% endif %} {% compress js %} {# Note: This block is purposely separated from the one above so that browsers cache the common JS instead of downloading a single, large file for each page. #} {% block javascript %} {% endblock javascript %} {% endcompress %} {% block post_js %} {% endblock %}