Skip to content
Snippets Groups Projects
info.html 1.04 KiB
Newer Older
Piotr Mitros's avatar
Piotr Mitros committed
<%inherit file="main.html" />

<%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>
Piotr Mitros's avatar
Piotr Mitros committed

<%include file="navigation.html" args="active_page='info'" />
Piotr Mitros's avatar
Piotr Mitros committed

<section class="main-content">
  <div class="info-wrapper">
    <section class="updates">
      <%include file="updates.html" />
Piotr Mitros's avatar
Piotr Mitros committed
    </section>
    <section aria-label="Handout Navigation" class="handouts">
      <%include file="handouts.html" />
Piotr Mitros's avatar
Piotr Mitros committed
    </section>
    % else:
    <section class="updates">
      <%include file="guest_updates.html" />
    </section>
    <section aria-label="Handout Navigation" class="handouts">
      <%include file="guest_handouts.html" />
    </section>
Piotr Mitros's avatar
Piotr Mitros committed
  </div>
</section>