38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
<%! from django.core.urlresolvers import reverse %>
|
|
<%namespace name='static' file='static_content.html'/>
|
|
|
|
<footer>
|
|
<nav>
|
|
<section class="top">
|
|
<section class="primary">
|
|
<a href="${reverse('root')}" class="logo"></a>
|
|
<a href="${reverse('courses')}">Find Courses</a>
|
|
<a href="${reverse('about_edx')}">About</a>
|
|
<a href="#">Blog</a>
|
|
<a href="${reverse('jobs')}">Jobs</a>
|
|
<a href="${reverse('contact')}">Contact</a>
|
|
</section>
|
|
|
|
<section class="social">
|
|
<a href="#"><img src="${static.url('images/linkedin.png')}" /></a>
|
|
<a href="#"><img src="${static.url('images/facebook.png')}" /></a>
|
|
<a href="#"><img src="${static.url('images/twitter.png')}" /></a>
|
|
</section>
|
|
</section>
|
|
|
|
<section class="bottom">
|
|
<section class="copyright">
|
|
<p>© 2012 edX, <a href="${reverse('copyright')}">some rights reserved.</a></p>
|
|
</section>
|
|
|
|
<section class="secondary">
|
|
<a href="${reverse('tos')}">Terms of Service</a>
|
|
<a href="${reverse('privacy_edx')}">Privacy Policy</a>
|
|
<a href="${reverse('honor')}">Honor Code</a>
|
|
<a href="${reverse('help_edx')}">Help</a>
|
|
</section>
|
|
</section>
|
|
|
|
</nav>
|
|
</footer>
|