static_tab.html 933 Bytes
Newer Older
1 2 3 4 5 6 7 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
## mako

<%page expression_filter="h"/>
<%!
from openedx.core.djangolib.markup import HTML
%>

<%inherit file="/main.html" />
<%block name="bodyclass">view-in-course view-statictab ${course.css_class or ''}</%block>
<%namespace name='static' file='/static_content.html'/>

<%block name="headextra">
<%static:css group='style-course-vendor'/>
<%static:css group='style-course'/>
${HTML(fragment.head_html())}
</%block>
<%block name="js_extra">

<%include file="/mathjax_include.html" args="disable_fast_preview=True"/>
${HTML(fragment.foot_html())}
</%block>

<%block name="pagetitle">${tab['name']} | ${course.display_number_with_default}</%block>

<%include file="/courseware/course_navigation.html" args="active_page=active_page" />

<main id="main" aria-label="Content" tabindex="-1">
    <section class="container">
      <div class="static_tab_wrapper">
        ${HTML(fragment.body_html())}
      </div>
    </section>
</main>