32 lines
659 B
HTML
32 lines
659 B
HTML
<%inherit file="main.html" />
|
|
|
|
<%block name="js_extra">
|
|
<!-- TODO: http://docs.jquery.com/Plugins/Validation -->
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
${init}
|
|
});
|
|
</script>
|
|
</%block>
|
|
|
|
<%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>
|