main.html 887 Bytes
Newer Older
1
<%namespace name='static' file='static_content.html'/>
Kyle Fiedler committed
2
<!DOCTYPE html>
pmitros committed
3 4
<html>
<head>
5
  <%block name="title"><title>edX</title></%block>
6

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

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

11 12 13
  <!--[if lte IE 9]>
  <%static:css group='ie-fixes'/>
  <![endif]-->
14 15
  <%static:js group='main_vendor'/>
  <%block name="headextra"/>
16

Rocky Duan committed
17

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

22
  <meta name="path_prefix" content="${MITX_ROOT_URL}">
pmitros committed
23
</head>
Kyle Fiedler committed
24

25
<body class="<%block name='bodyclass'/>">
Matthew Mongeau committed
26
  <%include file="navigation.html" />
27 28
  <section class="content-wrapper">
    ${self.body()}
29
    <%block name="bodyextra"/>
30 31
  </section>

32
  <%include file="footer.html" />
33 34

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

Matthew Mongeau committed
37
  <%block name="js_extra"/>
pmitros committed
38 39
</body>
</html>