footer.html 3.48 KB
Newer Older
1
## mako
2
<%! from django.core.urlresolvers import reverse %>
3
<%! from django.utils.translation import ugettext as _ %>
4 5
<%namespace name='static' file='static_content.html'/>

6 7 8 9
<div class="wrapper wrapper-footer">
  <footer>
    <div class="colophon">
      <nav class="nav-colophon">
10 11
      <ol>
          <li class="nav-colophon-01">
12
          <a id="about" href="${marketing_link('ABOUT')}">
13
              ${_("About")}
14
          </a>
15 16
          </li>
          <li class="nav-colophon-02">
17
          <a id="jobs" href="${marketing_link('JOBS')}">
18
              ${_("Jobs")}
19
          </a>
20 21
          </li>
          <li class="nav-colophon-03">
22
          <a id="press" href="${marketing_link('PRESS')}">
23
              ${_("Press")}
24
          </a>
25 26
          </li>
          <li class="nav-colophon-04">
27
          <a id="faq" href="${marketing_link('FAQ')}">
28
              ${_("FAQ")}
29
          </a>
30 31
          </li>
          <li class="nav-colophon-05">
32
          <a id="contact" href="${marketing_link('CONTACT')}">
33
              ${_("Contact")}
34
          </a>
35 36
          </li>
      </ol>
37
      </nav>
38

39
      <div class="colophon-about">
40
        <img src="${MITX_ROOT_URL}/lms/static/images/header-logo.png" />
41

42
        <p>${_("{platform_name} is a non-profit created by founding partners {Harvard} and {MIT} whose mission is to bring the best of higher education to students of all ages anywhere in the world, wherever there is Internet access. {platform_name}'s free online MOOCs are interactive and subjects include computer science, public health, and artificial intelligence.").format(platform_name="EdX", Harvard="Harvard", MIT="MIT")}</p>
43 44
      </div>
    </div>
45

46 47 48 49 50
    <div class="references">
      <nav class="nav-social">
        <ul>
          <li class="nav-social-01">
            <a href="http://www.meetup.com/edX-Global-Community/" rel="external">
51
              <img src="${MITX_ROOT_URL}/static/images/social/ico-social-meetup.png" alt="edX on Meetup" />
52 53 54 55
            </a>
          </li>
          <li class="nav-social-02">
            <a href="http://www.facebook.com/EdxOnline" rel="external">
56
              <img src="${MITX_ROOT_URL}/static/images/social/ico-social-facebook.png" alt="edX on Facebook" />
57 58 59 60
            </a>
          </li>
          <li class="nav-social-03">
            <a href="https://twitter.com/edXOnline" rel="external">
61
              <img src="${MITX_ROOT_URL}/static/images/social/ico-social-twitter.png" alt="edX on Twitter" />
62 63 64 65
            </a>
          </li>
          <li class="nav-social-04">
            <a href="https://plus.google.com/108235383044095082735/posts" rel="external">
66
              <img src="${MITX_ROOT_URL}/static/images/social/ico-social-google.png" alt="edX on Google+" />
67 68 69 70
            </a>
          </li>
          <li class="nav-social-05">
            <a href="http://youtube.com/user/edxonline" rel="external">
71
              <img src="${MITX_ROOT_URL}/static/images/social/ico-social-youtube.png" alt="edX on YouTube" />
72 73 74 75
            </a>
          </li>
        </ul>
      </nav>
76

77
      <p class="copyright">${_("&copy; 2013 {platform_name}, some rights reserved.").format(platform_name=settings.PLATFORM_NAME)}</p>
78 79 80 81

      <nav class="nav-legal">
        <ul>
          <li class="nav-legal-01">
82
            <a href="${marketing_link('TOS')}">${_("Terms of Service and Honor Code")}</a>
83 84
          </li>
          <li class="nav-legal-02">
85
            <a href="${marketing_link('PRIVACY')}">${_("Privacy Policy")}</a>
86 87 88 89 90
          </li>
        </ul>
      </nav>
    </div>
  </footer>
91
</div>