Files
edx-platform/cms/templates/index.html
2012-07-05 09:38:50 -04:00

13 lines
251 B
HTML

<%inherit file="base.html" />
<%block name="title">Courses</%block>
<%block name="content">
<section class="main-container">
<ol>
%for course, url in courses:
<li><a href="${url}">${course}</a></li>
%endfor
</ol>
</section>
</%block>