-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate all homepage strings into app.ftl file, update DE sample FTL …
…file
- Loading branch information
1 parent
fdae805
commit 3b7e080
Showing
5 changed files
with
66 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from django_ftl.bundles import Bundle | ||
|
||
main = Bundle(['privaterelay/brands.ftl', 'privaterelay/home.ftl']) | ||
main = Bundle(['privaterelay/app.ftl']) |
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,22 @@ | ||
# 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 http://mozilla.org/MPL/2.0/. | ||
|
||
### Brands | ||
|
||
-brand-name-firefox-relay = Firefox Relay | ||
### Navigation | ||
|
||
logo-alt= { -brand-name-firefox-relay } | ||
nav-home = Home | ||
# FAQ stands for Frequently Asked Questions. The intent of this page is to answer commonly asked questions. | ||
nav-faq = FAQ | ||
### Home Page | ||
### URL: https://dev.fxprivaterelay.nonprod.cloudops.mozgcp.net/ | ||
|
||
home-hero-headline = [DE] Hide your real email address to help protect your identity | ||
home-hero-copy = { -brand-name-firefox-relay } makes it easy to create aliases, randomly generated email addresses that forward to your real inbox. Use it to protect your online accounts - and your identity - from hackers. Sign in with your { -brand-firefox } account to get started. | ||
home-hero-cta = Sign In | ||
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
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 |
---|---|---|
@@ -1,6 +1,9 @@ | ||
{% load static %} | ||
{% load socialaccount %} | ||
{% load ftl %} | ||
|
||
{% ftlconf bundle='privaterelay.ftl_bundles.main' %} | ||
|
||
<div class="hero-sign-up-bg bg-fx-gradient fx-gradient-btn"> | ||
<a data-ga="send-ga-funnel-pings" data-event-category="Sign In" data-event-label="sign-up-btn-{{ page_position }}" class="hero-sign-up blue-button puffy" href="{% provider_login_url 'fxa' process='login' %}">Sign In</a> | ||
<a data-ga="send-ga-funnel-pings" data-event-category="Sign In" data-event-label="sign-up-btn-{{ page_position }}" class="hero-sign-up blue-button puffy" href="{% provider_login_url 'fxa' process='login' %}">{% ftlmsg 'home-hero-cta' %}</a> | ||
</div> |