33 lines
961 B
HTML
33 lines
961 B
HTML
<%inherit file="../main.html" />
|
|
|
|
<%namespace name='static' file='../static_content.html'/>
|
|
|
|
<%block name="title"><title>Courses</title></%block>
|
|
|
|
<section class="find-courses">
|
|
<header class="search" style="background: url('/static/images/homepage-bg.jpg')">
|
|
<div class="inner-wrapper main-search">
|
|
<hgroup>
|
|
<div class="logo">
|
|
<img src="${static.url('images/edx_bw.png')}" />
|
|
</div>
|
|
<h2>Explore free courses from leading universities.</h2>
|
|
</hgroup>
|
|
</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">
|
|
<ul class="courses-listing">
|
|
%for course in courses:
|
|
<li class="courses-listing-item">
|
|
<%include file="../course.html" args="course=course" />
|
|
</li>
|
|
%endfor
|
|
</ul>
|
|
</section>
|
|
</section>
|
|
</section>
|