courses.html 1.27 KB
Newer Older
Matthew Mongeau committed
1 2 3 4
<%inherit file="main.html" />

<%namespace name='static' file='static_content.html'/>

5 6
<%block name="title"><title>Courses</title></%block>

7
<section class="find-courses">
8
  <header class="search" style="background: url('/static/images/homepage-bg.jpg')">
9 10 11 12 13
    <div class="inner-wrapper main-search">
      <hgroup>
        <div class="logo">
          <img src="${static.url('images/edx_bw.png')}" />
        </div>
14
        <h2>Explore free courses from leading universities.</h2>
15
      </hgroup>
16 17
    </div>
  </header>
Matthew Mongeau committed
18

19
  <section class="container">
20
    ## I'm removing this for now since we aren't using it for the fall.
21
    ## <%include file="course_filter.html" />
Matthew Mongeau committed
22
    <section class="courses">
23 24 25 26 27 28 29 30 31 32
      <section class='university-column'>
        %for course in universities['MITx']:
          <%include file="course.html" args="course=course" />
        %endfor
      </section>
      <section class='university-column'>
        %for course in universities['HarvardX']:
          <%include file="course.html" args="course=course" />
        %endfor
      </section>
33
      <section class='university-column last'>
34 35 36 37
        %for course in universities['BerkeleyX']:
          <%include file="course.html" args="course=course" />
        %endfor
      </section>
Matthew Mongeau committed
38 39 40
    </section>
  </section>
</section>