Commit b4142246 by Bridger Maxwell

Added ie fixes stylesheet to main_django.html. Cleaned up whitespace to more…

Added ie fixes stylesheet to main_django.html. Cleaned up whitespace to more closely match main.html.
parent 7f67e9a0
...@@ -3,34 +3,37 @@ ...@@ -3,34 +3,37 @@
<html> <html>
<head> <head>
{% block title %}<title>edX</title>{% endblock %} {% block title %}<title>edX</title>{% endblock %}
<link rel="icon" type="image/x-icon" href="{% static "images/favicon.ico" %}" /> <link rel="icon" type="image/x-icon" href="{% static "images/favicon.ico" %}" />
{% compressed_css 'application' %} {% compressed_css 'application' %}
{% compressed_js 'main_vendor' %} {% compressed_js 'main_vendor' %}
{% block headextra %}{% endblock %} {% block headextra %}{% endblock %}
{% render_block "css" %} {% render_block "css" %}
<meta name="path_prefix" content="{{MITX_ROOT_URL}}">
<!--[if lt IE 9]> <!--[if lt IE 9]>
<script src="{% static "js/html5shiv.js" %}"></script> <script src="${static.url('js/html5shiv.js')}"></script>
<![endif]--> <![endif]-->
<!--[if lte IE 9]>
<%static:css group='ie-fixes'/>
<![endif]-->
<meta name="path_prefix" content="{{MITX_ROOT_URL}}">
</head> </head>
<body class="{% block bodyclass %}{% endblock %}"> <body class="{% block bodyclass %}{% endblock %}">
{% include "navigation.html" %} {% include "navigation.html" %}
<section class="content-wrapper"> <section class="content-wrapper">
{% block body %}{% endblock %} {% block body %}{% endblock %}
{% block bodyextra %}{% endblock %} {% block bodyextra %}{% endblock %}
</section> </section>
{% include "footer.html" %} {% include "footer.html" %}
{% compressed_js 'application' %} {% compressed_js 'application' %}
{% compressed_js 'module-js' %} {% compressed_js 'module-js' %}
{% render_block "js" %} {% render_block "js" %}
</body> </body>
</html> </html>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment