{# Base template for edX-specific pages. #} {% load compress %} {% load core_extras %} {% load i18n %} {% load staticfiles %} {% 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 navbar %} {% include 'edx/partials/_staff_navbar.html' %} {% endblock navbar %} {% block content %} {% endblock content %} {% block footer %} {% 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 %} {% 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 %}