-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathfooter.html
More file actions
87 lines (87 loc) · 4.29 KB
/
footer.html
File metadata and controls
87 lines (87 loc) · 4.29 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<footer id="footer">
<div class="container footer">
<a href="{{ url('thunderbird.index') }}" class="logo" aria-hidden="true">
{{ svg('Thunderbird_Logo') }}
</a>
<div class="site-links" role="navigation">
<div class="site-link-section">
<ul>
<li><a href="{{ url('thunderbird.index') }}" class="dotted home">{{_('Home')}}</a></li>
</ul>
</div>
<div id="footer-nav" class="site-link-section">
<h4>{{ _('Products') }}</h4>
<ul>
<li><a href="{{ url('thunderbird.products.desktop') }}" class="dotted">{{_('Thunderbird Desktop')}}</a></li>
<li><a href="{{ url('thunderbird.products.mobile') }}" class="dotted">{{_('Thunderbird Mobile')}}</a></li>
</ul>
</div>
<div class="site-link-section">
<h4>{{ _('Resources') }}</h4>
<ul>
<li><a href="{{ url('blog') }}" class="dotted">{{_('Blog')}}</a></li>
<li><a href="{{ url('support') }}" class="dotted">{{_('Get Help')}}</a></li>
<li><a href="{{ url('thunderbird.latest.all') }}" class="dotted">{{_('Downloads')}}</a></li>
<li><a href="{{ url('thunderbird.releases.index') }}" class="dotted">{{_('Release Notes')}}</a></li>
<li><a href="{{ url('thunderbird.enterprise') }}" class="dotted">{{ _('For Enterprises') }}</a></li>
<li><a href="{{ url('thunderbird.calendar.holiday') }}" class="dotted">{{ _('Holiday Calendars') }}</a></li>
</ul>
</div>
<div class="site-link-section">
<h4>{{ _('About') }}</h4>
<ul>
<li><a href="{{ url('thunderbird.about') }}" class="dotted">{{_('Who We Are')}}</a></li>
<li><a href="{{ url('thunderbird.contact') }}" class="dotted">{{_('Contact Us')}}</a></li>
<li><a href="{{ url('mozorg.careers.tb') }}" class="dotted">{{_('Careers')}}</a></li>
</ul>
</div>
<div class="site-link-section">
<h4>{{ _('Contribute') }}</h4>
<ul>
<li><a href="{{ url('thunderbird.donate') }}" class="dotted">{{_('Donate')}}</a></li>
<li><a href="{{ url('thunderbird.participate') }}" class="dotted">{{_('Participate')}}</a></li>
</ul>
</div>
</div>
<div class="mzla">
<a href="{{ url('mozorg.home') }}" class="mozilla-logo">
{{ svg('Mozilla_Logo') }}
</a>
<div class="legal-links">
<a href="{{ url('thunderbird.privacy') }}" data-link-type="footer"
data-link-name="Privacy">{{ _('Privacy Policy') }}</a>
<a href="{{ url('privacy.notices.websites') }}" data-link-type="footer"
data-link-name="Cookies">{{ _('Cookies') }}</a>
<a href="{{ url('legal.index') }}" data-link-type="footer"
data-link-name="Legal">{{ _('Legal') }}</a>
<a href="{{ url('legal.infringement') }}" data-link-type="footer"
data-link-name="infringement">{{ _('Send DMCA Notice') }}</a>
<a href="{{ url('legal.fraud-report') }}" data-link-type="footer"
data-link-name="Report Trademark Misuse">{{ _('Report Fraud') }}</a>
<a href="{{ url('guidelines') }}" data-link-type="footer"
data-link-name="guidelines">{{ _('Participation Guidelines') }}</a>
</div>
<p>
{% trans trimmed current_year=NOW.year %}
<small>
Thunderbird is part of <a href="https://blog.thunderbird.net/2020/01/thunderbirds-new-home/">MZLA Technologies Corporation</a>, a wholly owned subsidiary of Mozilla Foundation.
Portions of this content are ©1998–{{ current_year }} by individual contributors. Content available under a
<a href="https://www.mozilla.org/foundation/licensing/website-content/">Creative Commons license</a>.
</small>
{% endtrans %}
</p>
<div class="legal-links">
<small>
<a href="{{ url('contribute') }}" data-link-type="footer" data-link-name="Contribute to this site">{{ _('Contribute to this site') }}</a>
</small>
{% if LANG != 'en-US' %}
<small>
<a href="https://pontoon.mozilla.org/{{ LANG }}/thunderbirdnet/LC_MESSAGES/messages.po/" data-link-type="footer" data-link-name="Translate this site">{{ _('Translate this site') }}</a></small>
{% endif %}
</div>
</div>
<aside>
{% include 'includes/lang_switcher.html' %}
</aside>
</div>
</footer>