forked from mozilla/bedrock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2eb92c
commit 9c3a867
Showing
40 changed files
with
835 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
bedrock/firefox/templates/firefox/whatsnew/includes/fx134/qrcode.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{# | ||
This Source Code Form is subject to the terms of the Mozilla Public | ||
License, v. 2.0. If a copy of the MPL was not distributed with this | ||
file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
#} | ||
|
||
<div class="wnp-qr-code"> | ||
<figure> | ||
<div class="wnp-qr-code-wrapper"> | ||
{{ resp_img( | ||
url='img/firefox/whatsnew/whatsnew134/' + qrcode + '-200.png', | ||
srcset={ | ||
'img/firefox/whatsnew/whatsnew134/' + qrcode + '-400.png': '2x' | ||
}, | ||
optional_attributes={ | ||
'class': 'wnp-main-image', | ||
'width': '200', | ||
'height': '200' | ||
} | ||
) }} | ||
|
||
{% if variant == '2' %} | ||
<img class="wnp-sticker-v2-foxy animate-pop-in-v2-foxy" src="{{ static('img/firefox/whatsnew/whatsnew134/wnp-134-b-foxy.svg') }}" width="141" height="101" alt=""> | ||
<img class="wnp-sticker-v2-laptop animate-pop-in-v2-laptop" src="{{ static('img/firefox/whatsnew/whatsnew134/wnp-134-b-laptop.svg') }}" width="179" height="132" alt=""> | ||
<img class="wnp-sticker-v2-heart animate-pop-in-v2-heart" src="{{ static('img/firefox/whatsnew/whatsnew134/wnp-134-b-heart.svg') }}" width="86" height="77" alt=""> | ||
<img class="wnp-sticker-v2-phone animate-pop-in-v2-phone" src="{{ static('img/firefox/whatsnew/whatsnew134/wnp-134-b-phone.svg') }}" width="77" height="121" alt=""> | ||
<img class="wnp-sticker-v2-sync animate-pop-in-v2-sync" src="{{ static('img/firefox/whatsnew/whatsnew134/wnp-134-b-sync.svg') }}" width="82" height="81" alt=""> | ||
{% else %} | ||
<img class="wnp-sticker-v1-foxy animate-pop-in-v1-foxy" src="{{ static('img/firefox/whatsnew/whatsnew134/wnp-134-a-foxy.svg') }}" width="132" height="112" alt=""> | ||
<img class="wnp-sticker-v1-eye animate-pop-in-v1-eye" src="{{ static('img/firefox/whatsnew/whatsnew134/wnp-134-a-eye.svg') }}" width="105" height="105" alt=""> | ||
<img class="wnp-sticker-v1-padlock animate-pop-in-v1-padlock" src="{{ static('img/firefox/whatsnew/whatsnew134/wnp-134-a-padlock.svg') }}" width="119" height="115" alt=""> | ||
{% endif %} | ||
</div> | ||
|
||
<figcaption>{{ caption }}</figcaption> | ||
</figure> | ||
</div> |
47 changes: 47 additions & 0 deletions
47
bedrock/firefox/templates/firefox/whatsnew/whatsnew-fx134-ca.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{# | ||
This Source Code Form is subject to the terms of the Mozilla Public | ||
License, v. 2.0. If a copy of the MPL was not distributed with this | ||
file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
#} | ||
|
||
{% extends "firefox/whatsnew/base.html" %} | ||
|
||
{% block page_css %} | ||
{{ css_bundle('firefox_whatsnew_134') }} | ||
{% endblock %} | ||
|
||
{% block experiments %} | ||
{{ js_bundle('firefox_whatsnew_134_experiment') }} | ||
{% endblock %} | ||
|
||
{% if variant == '2' %} | ||
{% set title = 'Stay productive on the go' %} | ||
{% set desc = 'Syncing your Firefox tabs across your devices means you can work, read and shop whenever and wherever.' %} | ||
{% set qrcode = 'en-ca-b' %} | ||
{% else %} | ||
{% set title = 'Privacy in your pocket' %} | ||
{% set desc = 'You deserve privacy even when you’re in public. With Firefox on your phone, you can trust you won’t be followed around online wherever you go.' %} | ||
{% set qrcode = 'en-ca-a' %} | ||
{% endif %} | ||
|
||
{% block wnp_content %} | ||
<section class="wnp-content-main"> | ||
<div class="mzp-l-content mzp-t-content-md"> | ||
<h1 class="wnp-main-title">{{ title }}</h1> | ||
<p class="wnp-main-tagline">{{ desc }}</p> | ||
|
||
{% with qrcode=qrcode, caption='Scan to get Firefox on your phone or tablet' %} | ||
{% include "firefox/whatsnew/includes/fx134/qrcode.html" %} | ||
{% endwith %} | ||
</div> | ||
</section> | ||
|
||
<section class="wnp-footer"> | ||
<p class="wnp-sign-off">{{ ftl('whatsnew-signoff') }}</p> | ||
{% include "firefox/whatsnew/includes/mofo-donate-cta.html" %} | ||
</section> | ||
{% endblock %} | ||
|
||
{% block js %} | ||
{{ js_bundle('firefox_whatsnew_events') }} | ||
{% endblock %} |
47 changes: 47 additions & 0 deletions
47
bedrock/firefox/templates/firefox/whatsnew/whatsnew-fx134-de.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{# | ||
This Source Code Form is subject to the terms of the Mozilla Public | ||
License, v. 2.0. If a copy of the MPL was not distributed with this | ||
file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
#} | ||
|
||
{% extends "firefox/whatsnew/base.html" %} | ||
|
||
{% block page_css %} | ||
{{ css_bundle('firefox_whatsnew_134') }} | ||
{% endblock %} | ||
|
||
{% block experiments %} | ||
{{ js_bundle('firefox_whatsnew_134_experiment') }} | ||
{% endblock %} | ||
|
||
{% if variant == '2' %} | ||
{% set title = 'Bleib unterwegs produktiv' %} | ||
{% set desc = 'Wenn „produktiver sein“ auf deiner Liste mit guten Vorsätzen für 2025 steht, ist das Synchronisieren von Firefox auf all deinen Geräten der perfekte Start.' %} | ||
{% set qrcode = 'de-b' %} | ||
{% else %} | ||
{% set title = 'Datenschutz für die Hosentasche' %} | ||
{% set desc = 'Du verdienst Privatsphäre. Mit Firefox auf deinem Smartphone kannst du darauf vertrauen, dass du online nicht auf Schritt und Tritt verfolgt wirst.' %} | ||
{% set qrcode = 'de-a' %} | ||
{% endif %} | ||
|
||
{% block wnp_content %} | ||
<section class="wnp-content-main"> | ||
<div class="mzp-l-content mzp-t-content-md"> | ||
<h1 class="wnp-main-title">{{ title }}</h1> | ||
<p class="wnp-main-tagline">{{ desc }}</p> | ||
|
||
{% with qrcode=qrcode, caption='Scanne, um Firefox auf deinem Smartphone oder Tablet zu installieren.' %} | ||
{% include "firefox/whatsnew/includes/fx134/qrcode.html" %} | ||
{% endwith %} | ||
</div> | ||
</section> | ||
|
||
<section class="wnp-footer"> | ||
<p class="wnp-sign-off">{{ ftl('whatsnew-signoff') }}</p> | ||
{% include "firefox/whatsnew/includes/mofo-donate-cta.html" %} | ||
</section> | ||
{% endblock %} | ||
|
||
{% block js %} | ||
{{ js_bundle('firefox_whatsnew_events') }} | ||
{% endblock %} |
47 changes: 47 additions & 0 deletions
47
bedrock/firefox/templates/firefox/whatsnew/whatsnew-fx134-fr.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{# | ||
This Source Code Form is subject to the terms of the Mozilla Public | ||
License, v. 2.0. If a copy of the MPL was not distributed with this | ||
file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
#} | ||
|
||
{% extends "firefox/whatsnew/base.html" %} | ||
|
||
{% block page_css %} | ||
{{ css_bundle('firefox_whatsnew_134') }} | ||
{% endblock %} | ||
|
||
{% block experiments %} | ||
{{ js_bundle('firefox_whatsnew_134_experiment') }} | ||
{% endblock %} | ||
|
||
{% if variant == '2' %} | ||
{% set title = 'Restez productif où que vous soyez' %} | ||
{% set desc = 'La synchronisation de vos onglets Firefox sur tous vos appareils vous permet de travailler, de lire et de faire des achats de n’importe où sans perdre le fil.' %} | ||
{% set qrcode = 'fr-b' %} | ||
{% else %} | ||
{% set title = 'La confidentialité dans votre poche' %} | ||
{% set desc = 'Vous méritez d’être protégé, même en public. Naviguez sans être suivi avec Firefox sur votre téléphone.' %} | ||
{% set qrcode = 'fr-a' %} | ||
{% endif %} | ||
|
||
{% block wnp_content %} | ||
<section class="wnp-content-main"> | ||
<div class="mzp-l-content mzp-t-content-md"> | ||
<h1 class="wnp-main-title">{{ title }}</h1> | ||
<p class="wnp-main-tagline">{{ desc }}</p> | ||
|
||
{% with qrcode=qrcode, caption='Scanner pour installer Firefox sur votre téléphone ou tablette' %} | ||
{% include "firefox/whatsnew/includes/fx134/qrcode.html" %} | ||
{% endwith %} | ||
</div> | ||
</section> | ||
|
||
<section class="wnp-footer"> | ||
<p class="wnp-sign-off">{{ ftl('whatsnew-signoff') }}</p> | ||
{% include "firefox/whatsnew/includes/mofo-donate-cta.html" %} | ||
</section> | ||
{% endblock %} | ||
|
||
{% block js %} | ||
{{ js_bundle('firefox_whatsnew_events') }} | ||
{% endblock %} |
46 changes: 46 additions & 0 deletions
46
bedrock/firefox/templates/firefox/whatsnew/whatsnew-fx134-gb.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{# | ||
This Source Code Form is subject to the terms of the Mozilla Public | ||
License, v. 2.0. If a copy of the MPL was not distributed with this | ||
file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
#} | ||
|
||
{% extends "firefox/whatsnew/base.html" %} | ||
|
||
{% block page_css %} | ||
{{ css_bundle('firefox_whatsnew_134') }} | ||
{% endblock %} | ||
|
||
{% block experiments %} | ||
{{ js_bundle('firefox_whatsnew_134_experiment') }} | ||
{% endblock %} | ||
|
||
{% if variant == '2' %} | ||
{% set title = 'Stay productive on the go' %} | ||
{% set desc = 'Syncing your Firefox tabs across your devices means you can work, read and shop whenever and wherever.' %} | ||
{% set qrcode = 'en-gb-b' %} | ||
{% else %} | ||
{% set title = 'Privacy in your pocket' %} | ||
{% set desc = 'You deserve privacy even when you’re in public. With Firefox on your phone, you can trust you won’t be followed around online wherever you go.' %} | ||
{% set qrcode = 'en-gb-a' %} | ||
{% endif %} | ||
|
||
{% block wnp_content %} | ||
<section class="wnp-content-main"> | ||
<div class="mzp-l-content mzp-t-content-md"> | ||
<h1 class="wnp-main-title">{{ title }}</h1> | ||
<p class="wnp-main-tagline">{{ desc }}</p> | ||
|
||
{% with qrcode=qrcode, caption='Scan to get Firefox on your phone or tablet' %} | ||
{% include "firefox/whatsnew/includes/fx134/qrcode.html" %} | ||
{% endwith %} | ||
</section> | ||
|
||
<section class="wnp-footer"> | ||
<p class="wnp-sign-off">{{ ftl('whatsnew-signoff') }}</p> | ||
{% include "firefox/whatsnew/includes/mofo-donate-cta.html" %} | ||
</section> | ||
{% endblock %} | ||
|
||
{% block js %} | ||
{{ js_bundle('firefox_whatsnew_events') }} | ||
{% endblock %} |
47 changes: 47 additions & 0 deletions
47
bedrock/firefox/templates/firefox/whatsnew/whatsnew-fx134-us.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{# | ||
This Source Code Form is subject to the terms of the Mozilla Public | ||
License, v. 2.0. If a copy of the MPL was not distributed with this | ||
file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
#} | ||
|
||
{% extends "firefox/whatsnew/base.html" %} | ||
|
||
{% block page_css %} | ||
{{ css_bundle('firefox_whatsnew_134') }} | ||
{% endblock %} | ||
|
||
{% block experiments %} | ||
{{ js_bundle('firefox_whatsnew_134_experiment') }} | ||
{% endblock %} | ||
|
||
{% if variant == '2' %} | ||
{% set title = 'Stay productive on the go' %} | ||
{% set desc = 'Syncing your Firefox tabs across your devices means you can work, read and shop whenever and wherever.' %} | ||
{% set qrcode = 'en-us-b' %} | ||
{% else %} | ||
{% set title = 'Privacy in your pocket' %} | ||
{% set desc = 'You deserve privacy even when you’re in public. With Firefox on your phone, you can trust you won’t be followed around online wherever you go.' %} | ||
{% set qrcode = 'en-us-a' %} | ||
{% endif %} | ||
|
||
{% block wnp_content %} | ||
<section class="wnp-content-main"> | ||
<div class="mzp-l-content mzp-t-content-md"> | ||
<h1 class="wnp-main-title">{{ title }}</h1> | ||
<p class="wnp-main-tagline">{{ desc }}</p> | ||
|
||
{% with qrcode=qrcode, caption='Scan to get Firefox on your phone or tablet' %} | ||
{% include "firefox/whatsnew/includes/fx134/qrcode.html" %} | ||
{% endwith %} | ||
</div> | ||
</section> | ||
|
||
<section class="wnp-footer"> | ||
<p class="wnp-sign-off">{{ ftl('whatsnew-signoff') }}</p> | ||
{% include "firefox/whatsnew/includes/mofo-donate-cta.html" %} | ||
</section> | ||
{% endblock %} | ||
|
||
{% block js %} | ||
{{ js_bundle('firefox_whatsnew_events') }} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.