27 lines
785 B
HTML
27 lines
785 B
HTML
<%inherit file="main.html" />
|
|
|
|
<%namespace name='static' file='static_content.html'/>
|
|
|
|
<section class="find-courses">
|
|
<header class="search" style="background: url('/static/images/shot-2-large.jpg')">
|
|
<div class="inner-wrapper main-search">
|
|
<hgroup>
|
|
<div class="logo">
|
|
<img src="${static.url('images/edx_bw.png')}" />
|
|
</div>
|
|
<h2>Explore 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">
|
|
%for course in courses:
|
|
<%include file="course.html" args="course=course" />
|
|
%endfor
|
|
</section>
|
|
</section>
|
|
</section>
|