Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix-39] Earlybird Start Page encouraging users to update #82

Merged
merged 2 commits into from Dec 11, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
55 changes: 20 additions & 35 deletions start-page/earlybird/index.html
Expand Up @@ -2,38 +2,23 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/. -#}

{% extends "_base-resp.html" %}

{% block channel %}earlybird{% endblock %}
{% block title %}{{ _('Welcome to <span>Earlybird</span>') }}{% endblock %}

{% block main %}
<header>
<h1>{{ self.title() }}</h1>
<p>{{ _('Earlybird is the place where we stabilise our features before pushing them to our beta users. Experience the newest innovations as they’re developed.') }}</p>
</header>
<div>
<section>
<h2>{{ _('The QA Team Needs You') }}</h2>
<p>{{ _('Help our QA team improve this version of Thunderbird, see <a href="%(test)s">our wiki for more details</a>')|format(test='https://wiki.mozilla.org/Thunderbird:Testing') }}</p>
</section>
<section>
<h2>{{ _('Submit a Bug') }}</h2>
<p>{{ _('If you notice any problems with %(channel)s, please file a bug using these <a href="%(report)s">instructions</a>.')|format(channel=_('Earlybird'), report='https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines') }}</p>
</section>
<section>
<h2>{{ _('Submit Crash Reports') }}</h2>
<p>{{ _('Please use the Crash Reporter when %(channel)s crashes. It gives us valuable data on the most serious crashes and how people encounter them. ‘Tell Mozilla’ must be checked, and add a comment before you click ‘Restart’ or ‘Quit’. An email address is also useful if we need to contact you for more details.')|format(channel=_('Earlybird')) }}</p>
</section>
</div>
<div>
<section>
<h2>{{ _('Give Feedback') }}</h2>
<p>{{ _('You can send us <a href="%(feedback)s">feedback</a> using this form.')|format(feedback='https://support.mozilla.org/questions/new/thunderbird') }}</p>
</section>
<section>
<h2>{{ _('More Ways to Help') }}</h2>
<p>{{ _('<a href="%(contributing)s">Get Involved!</a> You don’t have to be technical and being involved is good for people wanting to get more familiar with Thunderbird.')|format(contributing='https://wiki.mozilla.org/Thunderbird#Contributing') }}</p>
</section>
</div>
{% endblock %}
<!DOCTYPE html>
<html lang="{{ LANG|replace('en-US', 'en') }}" dir="{{ DIR }}">
<head>
<meta charset="utf-8">
<meta name="robots" content="noindex">
<title>{% block title %}{{ _('Your Thunderbird is Not Up-to-Date!') }}{% endblock %}</title>
{{ l10n_css() }}
<!-- Fontawesome added below -->
<link href="/media/css/fontawesome-all.css" rel="stylesheet">
<!--<script defer src="/media/js/fontawesome-all.js"></script>-->
</head>
<body bgcolor="#D46A6A">
<main>
<h1><b><i class="fas fa-exclamation-triangle fa-3x" style="color:#0060df"></i> {{ self.title() }}</b></h1>
<h2>{{ _('Earlybird is no longer a supported Thunderbird release, and will not be updated!') }}</h2>
<p><b>{{ _('We recommend downloading the <a href="%(download)s">latest stable version of Thunderbird</a>.')|format(download='https://thunderbird.net') }}</b></p>
<p><b>{{ _('If you prefer, you can download the <a href="%(beta)s">latest beta version of Thunderbird</a>.')|format(beta='https://www.thunderbird.net/channel/') }}</b></p>
</main>
</body>
</html>