index.html 402 Bytes
Newer Older
1
<%inherit file="base.html" />
2
<%block name="bodyclass">index</%block>
3 4 5
<%block name="title">Courses</%block>

<%block name="content">
6 7
<h1>edX Course Management</h1>

8
<section class="main-container">
9 10 11 12 13
  <header>
    <h1>Courses</h1>
    <a href="#" class="wip">+</a>
  </header>

14 15 16 17 18 19 20
  <ol>
    %for course, url in courses:
    <li><a href="${url}">${course}</a></li>
    %endfor
  </ol>
</section>
</%block>