Serve branded footer JSON/HTML/CSS/JS from an API endpoint in the branding app. Refactor OpenEdX and EdX.org footer templates to use the Python version of the API, ensuring that the API values are consistent with the footer included in main.html. Detailed changes: * Added footer API end-point to the branding app. * Footer API allows the language to be set with querystring parameters. * Footer API allows showing/hiding of the OpenEdX logo using querystring parameters. * Deprecate ENABLE_FOOTER_V3 in favor of the branding API configuration flag. * Move no referrer script into main.html from the edx footer template. * Rename rwd_header_footer.js to rwd_header.js * Cache API responses. Authors: Awais Qureshi, Aamir Khan, Will Daly
72 lines
2.2 KiB
HTML
72 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
{% load compressed %}
|
|
{% load sekizai_tags i18n microsite %}
|
|
{% load url from future %}
|
|
{% load staticfiles %}
|
|
<html lang="{{LANGUAGE_CODE}}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
{% block title %}<title>{% platform_name %}</title>{% endblock %}
|
|
|
|
<link rel="icon" type="image/x-icon" href="{% favicon_path %}" />
|
|
|
|
{% compressed_css 'style-vendor' %}
|
|
{% compressed_css 'style-main' %}
|
|
{% 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 %}
|
|
|
|
<meta name="path_prefix" content="{{EDX_ROOT_URL}}">
|
|
</head>
|
|
|
|
<body class="{% block bodyclass %}{% endblock %} lang_{{LANGUAGE_CODE}}">
|
|
<a class="nav-skip" href="{% block nav_skip %}#content{% endblock %}">{% trans "Skip to main content" %}</a>
|
|
{% with course=request.course %}
|
|
{% if IS_EDX_DOMAIN %}
|
|
{% include "navigation-edx.html" %}
|
|
{% else %}
|
|
{% include "navigation.html" %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
<div class="content-wrapper" id="content">
|
|
{% block body %}{% endblock %}
|
|
{% block bodyextra %}{% endblock %}
|
|
</div>
|
|
{% 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 %}
|
|
{# TODO (ECOM-1339): Remove this check once we switch to the v3 footer permanently. #}
|
|
{% if ENABLE_BRANDING_API %}
|
|
{% include "footer-edx-v3.html" %}
|
|
{% else %}
|
|
{% include "footer-edx-v2.html" %}
|
|
{% endif %}
|
|
{% else %}
|
|
{% include "footer.html" %}
|
|
{% endif %}
|
|
|
|
{% compressed_js 'application' %}
|
|
{% compressed_js 'module-js' %}
|
|
|
|
{% render_block "js" %}
|
|
</body>
|
|
</html>
|
|
|
|
{% 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 %}
|