{% load compressed %}{% load sekizai_tags i18n microsite %}{% load url from future %}{% load staticfiles %} {% block title %}{% platform_name %}{% endblock %} {% compressed_css 'style-vendor' %} {% compressed_css 'style-app' %} {% compressed_css 'style-app-extend1' %} {% compressed_css 'style-app-extend2' %} {% compressed_css 'style-course-vendor' %} {% compressed_css 'style-course' %} {% block main_vendor_js %} {% compressed_js 'main_vendor' %} {% endblock %} {% block headextra %}{% endblock %} {% render_block "css" %} {% microsite_css_overrides_file %} {% trans "Skip to this view's content" %} {% with course=request.course %} {% if IS_EDX_DOMAIN %} {% include "navigation-edx.html" %} {% else %} {% include "navigation.html" %} {% endif %} {% endwith %}
{% block body %}{% endblock %} {% block bodyextra %}{% endblock %}
{% if IS_REQUEST_IN_MICROSITE %} {# For now we don't support overriden Django templates in microsites. Leave footer blank for now which is better than saying Edx.#} {% elif IS_EDX_DOMAIN %} {% include "footer-edx-new.html" %} {% else %} {% include "footer.html" %} {% endif %} {% compressed_js 'application' %} {% compressed_js 'module-js' %} {% render_block "js" %} {% comment %} This is a django template version of our main page from which all other pages inherit. This file should be rewritten to reflect any changes in main.html! Files used by {% include %} can be written as mako templates. Inheriting from this file allows us to include apps that use the django templating system without rewriting all of their views in mako. {% endcomment %}