## mako <%! 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="http://blog.edx.org/">Blog</a> <a href="${reverse('jobs')}">Jobs</a> <a href="${reverse('contact')}">Contact</a> </section> <section class="social"> <a href="http://youtube.com/user/edxonline"><img src="${static.url('images/social/youtube-sharing.png')}" /></a> <a href="https://plus.google.com/108235383044095082735"><img src="${static.url('images/social/google-plus-sharing.png')}" /></a> <a href="http://www.facebook.com/EdxOnline"><img src="${static.url('images/social/facebook-sharing.png')}" /></a> <a href="https://twitter.com/edXOnline"><img src="${static.url('images/social/twitter-sharing.png')}" /></a> </section> </section> <section class="bottom"> <section class="copyright"> ## <p>© 2013 edX, <a href="${reverse('copyright')}">some rights reserved.</a></p> # TODO: (bridger) Update the copyright for edX, then re-enable the link. <p>© 2013 edX, some rights reserved.</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>