Files
edx-platform/lms/templates/courses.html
David Ormsbee 3859c2be19 Add scanning of data directory for courses.
These are then displayed at /courses.
2012-06-21 10:59:48 -04:00

21 lines
562 B
HTML

<%inherit file="main.html" />
<%namespace name='static' file='static_content.html'/>
<section class="find-courses">
<header>
<div class="inner-wrapper">
<img src="${static.url('images/edx_bw.png')}" />
<h1>Explore courses from universities around the world.</h1>
</div>
</header>
<section class="container">
## I'm removing this for now since we aren't using it for the fall.
## <%include file="course_filter.html" />
<section class="courses">
<%include file="course.html" />
</section>
</section>
</section>