-
Notifications
You must be signed in to change notification settings - Fork 13
/
footer-menu.html
33 lines (33 loc) · 1.93 KB
/
footer-menu.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{% set ext_icon = '<i class="fas fa-external-link-alt"></i>' %}
<div class="container-fluid footer-menu pt-4">
<div class="container">
<div class="row justify-content-center">
<div class="col-9 col-sm-4 col-md-4 col-lg-3 footer-menu-col">
<h1>{{ _("About") }}</h1>
<ul class="list-unstyled">
<li><a href="https://projectpythia.org/about.html">{{ _("About Project Pythia") }}</a></li>
<li><a href="https://foundations.projectpythia.org/preamble/how-to-use.html">{{ _("How to use Pythia Foundations") }}</a></li>
<li><a href="https://projectpythia.org/#the-project-pythia-team">{{ _("The Project Team") }}</a></li>
<li><a href="https://projectpythia.org/#how-to-cite">{{ _("How to Cite") }}</a></li>
<li><a href="https://projectpythia.org/metrics">{{ _("Metrics") }}</a></li>
</ul>
</div>
<div class="col-9 col-sm-4 col-md-4 col-lg-3 footer-menu-col">
<h1>{{ _("Give Feedback") }}</h1>
<ul class="list-unstyled">
<li><a href="mailto:[email protected]">{{ _("Email us!") }}</a></li>
<li><a href="https://discourse.pangeo.io/c/education/project-pythia/60s">{{ _("Pangeo Discourse") }}</a></li>
</ul>
</div>
<div class="col-9 col-sm-4 col-md-4 col-lg-3 footer-menu-col">
<h1>{{ _("Contribute") }}</h1>
<ul class="list-unstyled">
<li><a href="https://projectpythia.org/contributing.html">{{ _("How to contribute to Project Pythia") }}</a></li>
<li><a href="https://projectpythia.org/code_of_conduct.html">{{ _("Our code of conduct") }}</a></li>
<li><a href="https://projectpythia.org/#weekly-working-group-meetings">{{ _("Join our weekly meetings") }}</a></li>
<li><a href="https://github.com/ProjectPythia">{{ _("Join us on GitHub") }}</a></li>
</ul>
</div>
</div>
</div>
</div>