Files
edx-platform/lms/templates/index.html
Matthew Mongeau 67487f8ad2 Modal wip
2012-06-21 10:38:33 -04:00

58 lines
2.0 KiB
HTML

<%inherit file="main.html" />
<%namespace name='static' file='static_content.html'/>
<section class="container">
<section class="home">
<header>
<section class="video-wrapper">
<div class="video-player">
<div class="video-inner">
<iframe width="560" height="315" src="http://www.youtube.com/embed/SA6ELdIRkRU" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</section>
<section class="welcome">
<div class="intro">
<h1>The Future of Online Education</h1>
<p>
EdX is a joint partnership between The Massachusetts Institute of Technology (MIT) and Harvard University to offer online learning to millions of people around the world. EdX will offer Harvard and MIT classes online for free. Through this partnership, the institutions aim to extend their collective reach to build a global community of online learners and to improve education.
</p>
</div>
<div class="signup-wrapper">
<section class="sign-up">
<a href="#" class="find-courses">Find Courses</a>
<a href="#" class="create-account">Sign Up</a>
</section>
</div>
</section>
</header>
<section class="university-partners">
<section class="partners">
<a href="/university_profile.html">
<img src="${static.url('images/mit_bw.png')}" />
<div class="name">MITx</div>
</a>
<a href="/university_profile.html">
<img src="${static.url('images/harvard_bw.png')}" />
<div class="name">HarvardX</div>
</a>
</section>
</section>
<section class="courses">
<%include file="course.html" />
</section>
<section class="more-info">
<h2>edX News & Announcements</h2>
<section class="news">
<article></article>
<article></article>
<article></article>
</section>
</section>
</section>
</section>