bedrock/templates/base.html

119 строки
4.3 KiB
HTML

{% from "macros.html" import email_newsletter_form with context %}
{% set_lang_files "main" %}
<!doctype html>
{# Note the "windows" class, without javascript platform-specific
assets default to windows #}
<html class="windows no-js" lang="{{ LANG }}" dir="{{ DIR }}">
<head>
{% block ga_experiments %}{% endblock %}
<meta charset="utf-8">
<title>{% block page_title_prefix %}Mozilla — {% endblock %}{% block page_title %}{% endblock %}{% block page_title_suffix %} — mozilla.org{% endblock %}</title>
<meta name="description" content="{% block description %}{% endblock %}">
{% block tabzilla_css %}
<link href="/tabzilla/media/css/tabzilla.css?build=1" rel="stylesheet">
{% endblock %}
<!--[if lt IE 9]>
<script src="{{ MEDIA_URL }}js/libs/html5shiv.js"></script>
<![endif]-->
{% block site_css %}
{{ css('common') }}
{% endblock %}
{% block extrahead %}{% endblock %}
{% block favicon %}<link rel="shortcut icon" href="{{ MEDIA_URL }}img/favicon.ico">{% endblock %}
{{ js('site') }}
{% include 'includes/google-analytics.html' %}
</head>
<body id="{% block body_id %}{% endblock %}" class="html-{{ DIR }} {% block body_class %}{% endblock %}"{% block body_attrs %}{% endblock %}>
<div id="strings" {% block string_data %}{% endblock %}></div>
<div id="outer-wrapper">
<div id="wrapper">
{% block site_header %}
<header id="masthead">
<a href="http://www.mozilla.org/" id="tabzilla">{{ _('Mozilla') }}</a>
{% block site_header_nav %}
<nav id="nav-main" role="navigation">
<ul>
<li><a href="{{ url('mozorg.mission') }}">{{_('Mission')}}</a></li>
<li><a href="{{ url('mozorg.about') }}">{{_('About')}}</a></li>
<li><a href="{{ url('mozorg.products') }}">{{_('Products')}}</a></li>
<li><a href="{{ url('mozorg.contribute') }}">{{_('Get Involved')}}</a></li>
</ul>
</nav>
{% endblock %}
{% block site_header_logo %}
<h2><a href="{{ url('mozorg.home') }}"><img src="{{ MEDIA_URL }}img/sandstone/header-mozilla-stone.png" alt="mozilla"></a></h2>
{% endblock %}
{% block breadcrumbs %}{% endblock %}
</header>
{% endblock %}
{% block content %}{% endblock %}
{% block email_form %}{{ email_newsletter_form() }}{% endblock %}
</div><!-- close #wrapper -->
{% block site_footer %}
<footer id="colophon">
<div class="row">
<div class="footer-logo">
<a href="{{ php_url('/') }}"><img src="{{ media('img/sandstone/footer-mozilla.png') }}" alt="mozilla"></a>
</div>
<div class="footer-license">
<p>
{% trans url='/foundation/licensing/website-content.html' %}
Portions of this content are ©1998–{{ current_year }} by individual
mozilla.org contributors. Content available under
a <a href="{{ url }}">Creative Commons license</a>.
{% endtrans %}
</p>
<p>
<a href="{{ url('mozorg.contribute_page') }}">{{_('Contribute to this page')}}</a>
</p>
</div>
<ul class="footer-nav">
<li><a href="{{ php_url('/about/contact.html#map-mountain_view') }}">{{_('Contact Us')}}</a></li>
<li><a href="{{ url('privacy.index') }}">{{_('Privacy Policy')}}</a></li>
<li><a href="{{ php_url('/about/legal.html') }}">{{_('Legal Notices')}}</a></li>
<li><a href="{{ php_url('/legal/fraud-report/index.html') }}">{{_('Report Trademark Abuse')}}</a></li>
</ul>
{% block social %}
<ul class="footer-nav">
<li><a href="http://twitter.com/firefox">{{_('Twitter')}}</a></li>
<li><a href="http://facebook.com/Firefox">{{_('Facebook')}}</a></li>
<li><a href="https://affiliates.mozilla.org/">{{_('Firefox Affiliates')}}</a></li>
</ul>
{% endblock %}
</div>
</footer>
{% endblock %}
</div><!-- close #outer-wrapper -->
{% block site_js %}
{{ js('common') }}
{% endblock %}
{% block tabzilla_js %}
<script src="/tabzilla/media/js/tabzilla.js?build=1"></script>
{% endblock %}
{% block js %}{% endblock %}
</body>
</html>