-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the actual headless donation langing page.
- Loading branch information
1 parent
a2d6191
commit 14c87d7
Showing
1 changed file
with
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{# 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/. -#} | ||
|
||
{% set active_page = "support-mobile" %} | ||
{% extends "includes/base/base.html" %} | ||
|
||
{% block page_title %}{{ _('Support Thunderbird for Android') }}{% endblock %} | ||
{% block page_desc %}{{ _('Thunderbird is a free email application that’s easy to set up and customize - and it’s loaded with great features!') }}{% endblock %} | ||
{% block breadcrumbs %}{% endblock %} | ||
{% block extra_meta %} | ||
<meta name="robots" content="noindex,nofollow" /> | ||
{% endblock %} | ||
|
||
{% block content %} | ||
<script> | ||
window.fundraiseup_livemode = false; | ||
</script> | ||
<section> | ||
<div class="container"> | ||
<!-- Using the test mobile campaign --> | ||
<a href="#XFPNLNRA" style="display: none"></a> | ||
</div> | ||
</section> | ||
{% endblock %} | ||
{% block site_footer %} | ||
{% include 'includes/donation-includes.html' %} | ||
{% endblock site_footer %} |