Files
edx-platform/lms/templates/courseware/static_tab.html
Victor Shnayder 7a88223ef7 custom tabs
* still needs better error checking and testing
2012-09-20 00:51:23 -04:00

17 lines
454 B
HTML

<%inherit file="/main.html" />
<%namespace name='static' file='/static_content.html'/>
<%block name="headextra">
<%static:css group='course'/>
</%block>
<%block name="title"><title>${course.number} ${tab['name']}</title></%block>
<%include file="/courseware/course_navigation.html" args="active_page='static_tab_{0}'.format(tab['url_slug'])" />
<section class="container">
<div class="static_tab_wrapper">
${tab_contents}
</div>
</section>