56 lines
1.5 KiB
HTML
56 lines
1.5 KiB
HTML
<%inherit file="main.html" />
|
|
<!-- TODO: http://docs.jquery.com/Plugins/Validation -->
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
${init}
|
|
// Show and hide sidebar
|
|
var acc_hidden=false;
|
|
$('#hide_acc').click(function() {
|
|
if(acc_hidden) {
|
|
$('#accordion').show();
|
|
$('#acc_td').attr("width","320");
|
|
$('#hide_acc').html("<<br><<br><");
|
|
acc_hidden=false;
|
|
} else {
|
|
$('#accordion').hide();
|
|
$('#acc_td').attr("width","0");
|
|
$('#hide_acc').html("><br>><br>>");
|
|
acc_hidden=true;
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
|
|
<div id="coursenav" align=right width=100%>
|
|
<a href="/book">Textbook</a>
|
|
<span class="ui-icon ui-icon-bullet" style="display:inline-block;"></span>
|
|
<a href="/courseware"><b>Courseware</b></a>
|
|
<span class="ui-icon ui-icon-bullet" style="display:inline-block;"></span>
|
|
<a href="/discussion">Discussion</a>
|
|
<span class="ui-icon ui-icon-bullet" style="display:inline-block;"></span>
|
|
<a href="/wiki">Wiki</a>
|
|
<span class="ui-icon ui-icon-bullet" style="display:inline-block;"></span>
|
|
<a href="/profile">Profile</a>
|
|
<span class="ui-icon ui-icon-bullet" style="display:inline-block;"></span>
|
|
<a href="/help">Help</a> <span class="ui-icon ui-icon-bullet" style="display:inline-block;"></span>
|
|
<a href="/logout">Log out</a>
|
|
</div>
|
|
|
|
|
|
<div id="bodyContent">
|
|
<table width=100% cellpadding=0><tr>
|
|
<td width=276 valign=top>
|
|
<div id="accordion" style="position:relative; top:-6px; ">
|
|
${accordion}
|
|
</div>
|
|
</td>
|
|
<td valign=top>
|
|
<div>
|
|
${content}
|
|
</div>
|
|
</td>
|
|
</tr></table>
|
|
|
|
|
|
</div>
|