Newer
Older
<%block name="js_extra">
<script>
$(document).ready(function(){
//if(!page) {
// cookie_page = $.cookie("book_page");
// if(cookie_page) {
// goto_page(cookie_page);
// }
//}
$(".handouts ol").treeview({collapsed:true, unique:true/*, cookieId: "treeview-book-nav", persist: "cookie"*/});
});
</script>
</%block>
<%block name="title"><title>Course Info - MITx 6.002x</title></%block>
<%include file="navigation.html" args="active_page='info'" />
<div class="info-wrapper">
Calen Pennington
committed
% if user.is_authenticated():
<section class="updates">
<%include file="updates.html" />
<section aria-label="Handout Navigation" class="handouts">
<%include file="handouts.html" />
Calen Pennington
committed
% else:
<section class="updates">
<%include file="guest_updates.html" />
</section>
<section aria-label="Handout Navigation" class="handouts">
<%include file="guest_handouts.html" />
</section>
Calen Pennington
committed
% endif