58 lines
1.7 KiB
HTML
58 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
{% load compressed %}{% load sekizai_tags i18n %}{% load url from future %}{% load staticfiles %}
|
|
<html>
|
|
<head>
|
|
{# "edX" should *not* be translated #}
|
|
{% block title %}<title>edX</title>{% endblock %}
|
|
|
|
<link rel="icon" type="image/x-icon" href="{% static "images/favicon.ico" %}" />
|
|
|
|
{% 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" %}
|
|
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="{% static 'js/html5shiv.js' %}"></script>
|
|
<![endif]-->
|
|
|
|
<meta name="path_prefix" content="{{MITX_ROOT_URL}}">
|
|
</head>
|
|
|
|
<body class="{% block bodyclass %}{% endblock %}">
|
|
<a class="nav-skip" href="#content">{% trans "Skip to this view's content" %}</a>
|
|
{% include "navigation.html" %}
|
|
<section class="content-wrapper" id="content">
|
|
{% block body %}{% endblock %}
|
|
{% block bodyextra %}{% endblock %}
|
|
</section>
|
|
|
|
{% include "footer.html" %}
|
|
|
|
{% 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 %}
|