|
| 1 | +{# This Source Code Form is subject to the terms of the Mozilla Public |
| 2 | + # License, v. 2.0. If a copy of the MPL was not distributed with this |
| 3 | + # file, You can obtain one at http://mozilla.org/MPL/2.0/. -#} |
| 4 | + |
| 5 | +{% extends "/firefox/base-resp.html" %} |
| 6 | + |
| 7 | +{% set_lang_files "firefox/hello" %} |
| 8 | + |
| 9 | +{% block extra_meta %}<meta name="robots" content="noindex">{% endblock %} |
| 10 | + |
| 11 | +{% block site_css %} |
| 12 | + {{ css('firefox_hello_start') }} |
| 13 | +{% endblock %} |
| 14 | + |
| 15 | +{% block page_title_prefix %}{% endblock %} |
| 16 | +{% block page_title %}{{ _('Firefox Hello') }}{% endblock %} |
| 17 | +{% block page_title_suffix %}{% endblock %} |
| 18 | +{% block body_id %}firefox-hello-start{% endblock %} |
| 19 | +{% block body_class %}sky{% endblock %} |
| 20 | + |
| 21 | +{% block string_data %} |
| 22 | +data-get-started-title="{{ _('Welcome to Hello') }}" |
| 23 | +data-get-started-text="{{ _('Open a video conversation with a single click, then invite a friend to join.') }}" |
| 24 | +data-invite-title="{{ _('Share your link with a friend') }}" |
| 25 | +data-invite-text="{{ _('They don’t even need Firefox to join. They just need to click the link.') }}" |
| 26 | +data-shared-title="{{ _('No need to wait around') }}" |
| 27 | +data-shared-text="{{ _('Once your friend clicks the link, the Hello icon will change to blue, letting you know they’re there.') }}" |
| 28 | +data-room-list-title="{{ _('You have a conversation waiting') }}" |
| 29 | +data-room-list-text="{{ _('Click now to join and say hello.') }}" |
| 30 | +{% endblock %} |
| 31 | + |
| 32 | +{% block site_header %}{% endblock %} |
| 33 | + |
| 34 | +{% block content %} |
| 35 | + <div class="spacer"></div> |
| 36 | + <main role="main" data-incoming-conversation="{{ incoming_conversation }}"> |
| 37 | + <h1>{{ high_res_img('img/firefox/hello/firefox-hello-logo.png?01-2015', {'alt': _('Firefox Hello'), 'width': '535', 'height': '88'}) }}</h1> |
| 38 | + <section class="default"> |
| 39 | + <h2>{{ _('The easiest way to have a free video conversation with anyone, anywhere') }}</h2> |
| 40 | + <ol> |
| 41 | + <li>{{ _('Start a conversation right from Firefox') }}</li> |
| 42 | + <li>{{ _('Invite a friend by sending them a link') }}</li> |
| 43 | + <li>{{ _('The Hello icon will change to blue once they’ve joined') }}</li> |
| 44 | + </ol> |
| 45 | + <aside> |
| 46 | + <ul> |
| 47 | + <li><a rel="external" href="https://support.mozilla.org/kb/firefox-hello-video-and-voice-conversations-online" class="more">{{ _('Need help? Get support here') }}</a></li> |
| 48 | + <li><a href="{{ url('firefox.hello') }}" class="more">{{ _('Learn all about Hello') }}</a></li> |
| 49 | + </ul> |
| 50 | + <ul> |
| 51 | + <li><a rel="external" href="https://support.mozilla.org/kb/create-and-manage-your-contacts-list-firefox-hello" class="more">{{ _('Do more with a Firefox Account') }}</a></li> |
| 52 | + {# Removing link for now, as per Bug 1109132#c14 |
| 53 | + <li><a href="#" class="more">{{ _('Tell a friend about Hello') }}</a></li> |
| 54 | + #} |
| 55 | + </ul> |
| 56 | + </aside> |
| 57 | + </section> |
| 58 | + <section class="start"> |
| 59 | + <h2>{{ _('The easiest way to connect for free over video') }}</h2> |
| 60 | + <p>{{ _('Start right from Firefox and invite anyone, anywhere to have a conversation. All they have to do is click a link to join. There’s no account or sign-in required.') }}</p> |
| 61 | + </section> |
| 62 | + <section class="end"> |
| 63 | + <h2>{{ _('You’ve started your first conversation. Wasn’t that easy?') }}</h2> |
| 64 | + <ul> |
| 65 | + {# Removing link for now, as per Bug 1109132#c14 |
| 66 | + <li><a href="#" class="more">{{ _('Tell a friend about Hello') }}</a></li> |
| 67 | + #} |
| 68 | + <li><a rel="external" href="https://support.mozilla.org/kb/firefox-hello-video-and-voice-conversations-online" class="more">{{ _('Need help? Get support here') }}</a></li> |
| 69 | + <li><a href="{{ url('firefox.hello') }}" class="more">{{ _('Learn all about Hello') }}</a></li> |
| 70 | + <li><a rel="external" href="https://support.mozilla.org/kb/create-and-manage-your-contacts-list-firefox-hello" class="more">{{ _('Do more with a Firefox Account') }}</a></li> |
| 71 | + </ul> |
| 72 | + </section> |
| 73 | + </main> |
| 74 | + |
| 75 | +{% endblock %} |
| 76 | + |
| 77 | +{% block email_form %}{% endblock %} |
| 78 | + |
| 79 | +{% block site_footer %}{% endblock %} |
| 80 | + |
| 81 | +{% block js %} |
| 82 | + {{ js('firefox_hello_start') }} |
| 83 | +{% endblock %} |
0 commit comments