stripped-main.html 856 Bytes
Newer Older
1 2
<%! from django.utils.translation import ugettext as _ %>

3 4 5 6
<%namespace name='static' file='static_content.html'/>
<!DOCTYPE html>
<html>
<head>
7
  ## "edX" should not be translated
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
  <%block name="title"><title>edX</title></%block>

  <link rel="icon" type="image/x-icon" href="${static.url('images/favicon.ico')}" />

  <%static:css group='application'/>

  <%static:js group='main_vendor'/>
  <%block name="headextra"/>


  <!--[if lt IE 9]>
  <script src="${static.url('js/html5shiv.js')}"></script>
  <![endif]-->

  <!--[if lte IE 9]>
  <%static:css group='ie-fixes'/>
  <![endif]-->
  <meta name="path_prefix" content="${MITX_ROOT_URL}">
</head>

<body class="<%block name='bodyclass'/>">
  ${self.body()}
  <%block name="bodyextra"/>

  <%static:js group='application'/>
  <%static:js group='module-js'/>

  <%block name="js_extra"/>
</body>
</html>