|
7 | 7 |
|
8 | 8 | {% block page_title_prefix %}{{_('Thunderbird')}} — {% endblock %} |
9 | 9 | {% block page_title %}{{ _('Download Thunderbird') }}{% endblock %} |
10 | | -{% block page_desc %}{{ _('Your download should begin automatically. Didn’t work? Try the button below!') }}{% endblock %} |
| 10 | +{% block page_desc %}{{ _('Thank you for downloading and installing Thunderbird!') }}{% endblock %} |
11 | 11 |
|
12 | 12 | {% block body_id %}thunderbird-download{% endblock %} |
13 | 13 |
|
14 | 14 | {% block header_content %} |
15 | | -<section class="text-center text-white flex flex-col items-center mb-12 pr-4 pl-4"> |
16 | | - <h1 class="font-4xl md:font-hero font-thin md:mt-10 mb-8">{{ self.page_title() }}</h1> |
17 | | - <p class="font-lg md:font-xl tracking-wide leading-relaxed max-w-xl mb-8 md:mb-16">{{ self.page_desc() }}</p> |
18 | | - <div class="tracking-wider"> |
| 15 | +<section class="w-full"> |
| 16 | + <div class="retry-download flex bg-white items-center text-black mx-auto max-w-xl shadow-lg h-12 rounded"> |
| 17 | + <div class="retry-text flex items-center text-center"> |
| 18 | + <span class="text-blue mr-2 ml-4">{{ svg('circle-info') }}</span> |
| 19 | + <p class="font-lg tracking-wide leading-none">{{ _('Your download didn\'t start automatically?') }}</p> |
| 20 | + </div> |
| 21 | + <div class="retry-button leading-none text-center mx-auto mb-4 font-md"> |
19 | 22 | <!-- Hide all the possible channels, so we can later show the one we want. --> |
20 | | - <div id="esr" class="hidden"> |
21 | | - {{ download_thunderbird(force_direct=true, alt_copy=_('Free Download'), flex_class='justify-center') }} |
| 23 | + <div id="esr" class="download-hidden"> |
| 24 | + <h4 class="channel-title">{{ _('Release Channel') }}</h4> |
| 25 | + {{ download_thunderbird(force_direct=true, alt_copy=_('Try again'), flex_class='justify-center', button_class='btn-newsletter no-underline', hide_footer_links=True) }} |
22 | 26 | </div> |
23 | | - <div id="beta" class="hidden"> |
24 | | - {{ download_thunderbird(force_direct=true, alt_copy=_('Free Download'), channel='beta', flex_class='justify-center') }} |
| 27 | + <div id="beta" class="download-hidden"> |
| 28 | + <h4 class="channel-title">{{ _('Beta Channel') }}</h4> |
| 29 | + {{ download_thunderbird(force_direct=true, alt_copy=_('Try again'), channel='beta', flex_class='justify-center', button_class='btn-newsletter no-underline', hide_footer_links=True) }} |
25 | 30 | </div> |
26 | | - <div id="daily" class="hidden"> |
27 | | - {{ download_thunderbird(force_direct=true, alt_copy=_('Free Download'), channel='daily', flex_class='justify-center') }} |
| 31 | + <div id="daily" class="download-hidden"> |
| 32 | + <h4 class="channel-title">{{ _('Daily Channel') }}</h4> |
| 33 | + {{ download_thunderbird(force_direct=true, alt_copy=_('Try again'), channel='daily', flex_class='justify-center', button_class='btn-newsletter no-underline', hide_footer_links=True) }} |
28 | 34 | </div> |
29 | 35 | </div> |
30 | | - </section> |
31 | | - <section class="hidden md:flex max-w-5xl self-center"> |
32 | | - {{ platform_img('thunderbird/landing/screenshot.png', {'alt': _('Thunderbird screenshot'), 'high-res': True, 'l10n': True, 'platforms': ('windows', 'linux', 'mac')}) }} |
33 | | - </section> |
| 36 | + </div> |
| 37 | +</section> |
| 38 | + <div class="flex flex-col" style="min-height: 70vh"> |
| 39 | + <section class="text-center text-white mx-auto my-auto"> |
| 40 | + <p class="font-3xl tracking-wide max-w-4xl mb-6"><span class="mb-2 font-hero" style="display: block;">{{ _('Just one more step!') }}</span>{{ _('Finish installing, and start enjoying Thunderbird.') }}</p> |
| 41 | + <p class="tracking-wider"> |
| 42 | + {{ _('Having trouble? <a class="inline-link" href="%(url)s">Get help with your installation.</a>')|format(url='https://support.mozilla.org/products/thunderbird/install-migrate-and-update') }} |
| 43 | + </p> |
| 44 | + </section> |
| 45 | + |
| 46 | + </div> |
34 | 47 | {% endblock %} |
35 | 48 |
|
36 | 49 | {% block content %} |
37 | | - |
38 | 50 | <div itemscope itemtype="http://schema.org/SoftwareApplication"> |
39 | 51 | <meta itemprop="name" content="{{_('Thunderbird')}}"> |
40 | 52 | <meta itemprop="description" content="{% block product_desc %}{{ self.page_desc() }}{% endblock %}"> |
|
0 commit comments