198 строки
7.4 KiB
HTML
198 строки
7.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ LANG }}" dir="{{ DIR }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
{% if not settings.ENGAGE_ROBOTS %}
|
|
<meta name="robots" content="noindex">
|
|
{% endif %}
|
|
{% block extrameta %}{% endblock %}
|
|
<title>{% block title %}{{ _('Mozilla Add-ons') }}{% endblock %}</title>
|
|
|
|
<link rel="shortcut icon" type="image/x-icon"
|
|
href="{{ MEDIA_URL}}img/favicon.ico">
|
|
|
|
{% block rss_feed %}{% endblock %}
|
|
|
|
{# L10n: {0} is an application, like Firefox. #}
|
|
<link title="{{ _('{0} Add-ons')|f(APP.pretty) }}"
|
|
rel="search" type="application/opensearchdescription+xml"
|
|
href="{{ url('amo.opensearch') }}" />
|
|
|
|
{% block site_css %}
|
|
{{ css('zamboni/impala') }}
|
|
<!--[if IE]><link rel="stylesheet" href="{{ media('css/impala/ie.css') }}"><![endif]-->
|
|
<!--[if IE 7]><link rel="stylesheet" href="{{ media('css/impala/ie7.css') }}"><![endif]-->
|
|
<!--[if lt IE 9]>
|
|
<script src="{{ media('js/lib/iepp.min.js') }}"></script>
|
|
<![endif]-->
|
|
{% endblock %}
|
|
|
|
{% block extrahead %}{% endblock %}
|
|
<noscript><link rel="stylesheet" href="{{ media('css/impala/nojs.css') }}"></noscript>
|
|
|
|
{% if settings.DEBUG %}
|
|
{% if settings.LESS_LIVE_REFRESH %}
|
|
<meta id="live_refresh" name="live_refresh" value="1">
|
|
{% endif %}
|
|
{{ js('debug') }}
|
|
{% endif %}
|
|
|
|
{% if request.user.is_authenticated() %}
|
|
<meta name="csrf" content="{{ csrf_token }}">
|
|
{% endif %}
|
|
</head>
|
|
<body class="html-{{ DIR }} {{ request.APP.short }} moz-header-slim {% block bodyclass %}{% endblock %}"
|
|
data-app="{{ request.APP.short }}"
|
|
data-appname="{{ request.APP.pretty }}"
|
|
data-appid="{{ request.APP.id }}"
|
|
data-min-beta-version="{{ settings.MIN_BETA_VERSION }}"
|
|
data-anonymous="{{ (not request.user.is_authenticated())|json }}"
|
|
data-readonly="{{ settings.READ_ONLY|json }}"
|
|
data-media-url="{{ MEDIA_URL }}"
|
|
{% block bodyattrs %}{% endblock %}>
|
|
|
|
{% if ADMIN_MESSAGE or settings.READ_ONLY%}
|
|
<div id="site-notice">
|
|
{% if ADMIN_MESSAGE %}
|
|
<p>{{ ADMIN_MESSAGE|safe }}</p>
|
|
{% endif %}
|
|
{% if settings.READ_ONLY %}
|
|
<p>{{ _("Some features are temporarily disabled while we perform website maintenance. We'll be back to full capacity shortly.") }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
<div id="page">
|
|
{% block site_header %}
|
|
{# Well that's an awful tiny mozilla header #}
|
|
<div id="global-header-tab">
|
|
<a href="http://mozilla.org/"><img src="{{ media('img/zamboni/mozilla-tab.png') }}"></a>
|
|
</div>
|
|
<div class="amo-header">
|
|
<nav id="aux-nav" role="navigation" class="menu-nav">
|
|
<ul class="c">
|
|
{% if not settings.READ_ONLY %}
|
|
{% include "impala/user_login.html" %}
|
|
{% endif %}
|
|
{% block aux_nav %}
|
|
<li>
|
|
<a href="#" id="other-apps" title="{{ _('Find add-ons for other applications') }}">{{ _('Other Applications') }}</a>
|
|
<ul class="other-apps">
|
|
{% for app in amo.APP_USAGE %}
|
|
{% if app != request.APP %}
|
|
<li id="app-{{ app.short }}" class="{{ app.short }}">
|
|
<a href="{{ locale_url(app.short) }}">{{ app.pretty }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</li>
|
|
{% endblock aux_nav %}
|
|
</ul>
|
|
</nav>
|
|
<div class="header-search" role="search">
|
|
{% block search_form %}
|
|
{% include 'impala/search.html' %}
|
|
{% endblock %}
|
|
</div>
|
|
<div id="masthead">
|
|
{% block site_header_title %}
|
|
{% include "impala/header_title.html" %}
|
|
{{ site_nav() }}
|
|
{% endblock %}
|
|
</div>
|
|
<div class="site-balloon" id="site-nonfx">
|
|
<p>
|
|
{% trans url='http://mozilla.org/firefox/?src=amo' %}
|
|
To try the thousands of add-ons available here, download
|
|
<a href="{{ url }}">Mozilla Firefox</a>,
|
|
a fast, free way to surf the Web!
|
|
{% endtrans %}
|
|
</p>
|
|
<a href="#" class="close">{{ _('Close') }}</a>
|
|
</div>
|
|
<div class="site-balloon" id="site-welcome">
|
|
<h3>{{ _('Welcome to {0} Add-ons.')|f(APP.pretty) }}</h3>
|
|
<p>
|
|
{% trans %}
|
|
Choose from thousands of extra features and styles for Firefox.
|
|
{# Fligtar said to remove this until we have something to link to.
|
|
<a href="#">Learn more…</a> #}
|
|
{% endtrans %}
|
|
</p>
|
|
<a href="#" class="close">{{ _('Close') }}</a>
|
|
</div>
|
|
<div class="site-balloon" id="mobile-banner">
|
|
<h3>{{ _('On the go?') }}</h3>
|
|
<p>
|
|
{% trans %}
|
|
Check out our
|
|
<a class="mobile-link" href="#">Mobile Add-ons site</a>.
|
|
{% endtrans %}
|
|
</p>
|
|
<a href="#" class="close">{{ _('Close') }}</a>
|
|
</div>
|
|
</div>
|
|
{% endblock site_header %}
|
|
|
|
{# Overridden in base_side_categories, which expands categories
|
|
on the side of the page. #}
|
|
{% block main_content %}
|
|
{% block navbar %}
|
|
{% endblock %}
|
|
{# outer_content is for something you want above content on every page. #}
|
|
{% block outer_content %}{% endblock %}
|
|
{% block content %}{% endblock %}
|
|
{% endblock %}
|
|
</div>
|
|
<div id="tooltip">
|
|
<span></span>
|
|
</div>
|
|
<div id="popup-staging">
|
|
{{ sharing_box() }}
|
|
<div id="add-to-collection" class="popup">
|
|
<div class="collection-add-login">
|
|
<p>{% trans %}
|
|
To create your own collections, you must have a Mozilla Add-ons account.
|
|
{% endtrans %}</p>
|
|
<p class="register-button">
|
|
<a class="button" href="{{ remora_url('users/register') }}">{{ _('Create an Add-ons Account') }}</a>
|
|
</p>
|
|
<p>
|
|
{% trans login=login_link() %}
|
|
or <a href="{{ login }}">log in to your current account</a>
|
|
{% endtrans %}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% block popups %}
|
|
{% endblock %}
|
|
</div>
|
|
{# js #}
|
|
{% block site_js %}
|
|
<script src="{{ static(url('jsi18n')) }}"></script>
|
|
{{ js('impala') }}
|
|
<script async defer src="{{ static(url('addons.buttons.js')) }}"></script>
|
|
<script async defer src="{{ settings.PAYPAL_JS_URL }}"></script>
|
|
{% endblock %}
|
|
{% block js %}{% endblock %}
|
|
{% block footer %}
|
|
<div id="footer" role="contentinfo">
|
|
<div class="section">
|
|
{% block footer_extras %}
|
|
<img class="footerlogo" src="{{ media('img/zamboni/footer-logo-med.png') }}" alt="">
|
|
{% endblock %}
|
|
{% include "footer.html" %}
|
|
</div> {# section #}
|
|
</div> {# footer #}
|
|
{% endblock %}
|
|
{# Webtrends Stats Tracking #}
|
|
<script defer src="{{ media('js/webtrends/webtrends-v0.1.js') }}"></script>
|
|
<noscript>
|
|
<img id="DCSIMG" width="1" height="1"
|
|
src="https://statse.webtrendslive.com/dcso6de4r0000082npfcmh4rf_4b1e/njs.gif?dcsuri=/nojavascript&WT.js=No&WT.tv=8.6.2" />
|
|
</noscript>
|
|
{# End Webtrends #}
|
|
</body>
|
|
</html>
|