base.html 1.85 KB
Newer Older
1 2
<%namespace name='static' file='static_content.html'/>

3 4 5 6 7 8
<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">

9
    <%static:css group='base-style'/>
10 11
    <link rel="stylesheet" type="text/css" href="${static.url('js/vendor/markitup/skins/simple/style.css')}" />
    <link rel="stylesheet" type="text/css" href="${static.url('js/vendor/markitup/sets/wiki/style.css')}" />
12
    <title><%block name="title"></%block></title>
13
    <meta name="viewport" content="width=device-width,initial-scale=1">
14 15

    <meta name="path_prefix" content="${MITX_ROOT_URL}">
16 17
  </head>

18
  <body class="<%block name='bodyclass'></%block>">
19

20
    <%include file="widgets/header.html"/>
21
    <%include file="courseware_vendor_js.html"/>
22

23 24 25 26
    <script type="text/javascript" src="${static.url('js/vendor/json2.js')}"></script>
    <script type="text/javascript" src="${static.url('js/vendor/underscore-min.js')}"></script>
    <script type="text/javascript" src="${static.url('js/vendor/backbone-min.js')}"></script>
    <script type="text/javascript" src="${static.url('js/vendor/markitup/jquery.markitup.js')}"></script>
27
    <script type="text/javascript" src="${static.url('js/vendor/markitup/sets/wiki/set.js')}"></script>
28
    <%static:js group='main'/>
29
    <%static:js group='module-js'/>
30 31 32 33
    <script src="${static.url('js/vendor/jquery.inlineedit.js')}"></script>
    <script src="${static.url('js/vendor/jquery.cookie.js')}"></script>
    <script src="${static.url('js/vendor/jquery.leanModal.min.js')}"></script>
    <script src="${static.url('js/vendor/jquery.tablednd.js')}"></script>
34 35 36 37
    <script type="text/javascript">
      document.write('\x3Cscript type="text/javascript" src="' +
          document.location.protocol + '//www.youtube.com/player_api">\x3C/script>');
    </script>
38 39 40

    <%block name="content"></%block>

41 42 43 44
  </body>
</html>