Commit d41a9745 by Diana Huang

Merge pull request #1556 from edx/diana/wiki-skip-links

Add skip link to django template pages.
parents 70b7ac41 d8862927
......@@ -22,15 +22,16 @@
<!--[if lt IE 9]>
<script src="${static.url('js/html5shiv.js')}"></script>
<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">
<section class="content-wrapper" id="content">
{% block body %}{% endblock %}
{% block bodyextra %}{% endblock %}
</section>
......
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