Files
edx-platform/courseware.html
Kyle Fiedler 3081cc0189 Added styles and js to hide captions
--HG--
branch : kf-captions
2012-02-22 15:01:56 -05:00

30 lines
624 B
HTML

<%inherit file="main.html" />
<!-- TODO: http://docs.jquery.com/Plugins/Validation -->
<script type="text/javascript">
$(function() {
${init}
});
</script>
<%include file="navigation.html" args="active_page='courseware'" />
<section class="main-content">
<div class="course-wrapper">
<section class="course-index">
<header id="open_close_accordion">
<h2>Courseware Index</h2>
<a href="#">close</a>
</header>
<div id="accordion">
${accordion}
</div>
</section>
<section class="course-content">
${content}
</section>
</div>
</section>