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

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

40 41 42 43 44 45 46 47
      <div class="wrapper-logo">
        <p>
          <a href="/">
            ## this is just a placeholder logo
            ## feel free to change this logo to your own
            <img alt="organiztion logo placeholder" src="/static/images/logo-placeholder.png">
          </a>
        </p>
48
      </div>
49

50 51 52 53 54 55 56 57 58 59 60 61
      <p class="copyright">${_("&copy; 2014 {platform_name}, some rights reserved").format(platform_name=settings.PLATFORM_NAME)}</p>
        <nav class="nav-legal">
          <ul>
            <li class="nav-legal-01">
              <a href="${marketing_link('TOS')}">${_("Terms of Service and Honor Code")}</a>
            </li>
            <li class="nav-legal-02">
              <a href="${marketing_link('PRIVACY')}">${_("Privacy Policy")}</a>
            </li>
          </ul>
        </nav>
    </div>
62

63 64 65 66 67
    ## please leave this link and use one of the logos provided
    <div class="powered-by">
      <p>
        <a href="http://openedx.org/">
          ## standard powered-by logo
68
          <img src="https://files.edx.org/openedx-logos/edx-openedx-logo-tag.png" alt="Powered by Open edX" width="150" height="50" />
69
          ## greyscale logo for dark background
70
          ## <img src="https://files.edx.org/openedx-logos/edx-openedx-logo-tag-light.png" alt="Powered by Open edX" width="150" height="50" />
71
          ## greyscale logo for light background
72
          ## <img src="https://files.edx.org/openedx-logos/edx-openedx-logo-tag-dark.png" alt="Powered by Open edX" width="150" height="50" />
73 74
        </a>
      </p>
75 76
    </div>
  </footer>
77
</div>