mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-05 14:04:46 +00:00
38 lines
1.7 KiB
HTML
38 lines
1.7 KiB
HTML
<!doctype html>
|
|
{% load static i18n %}
|
|
{% get_current_language as LANGUAGE_CODE %}
|
|
{% get_current_language_bidi as LANGUAGE_BIDI %}
|
|
<html class="no-js" lang="{{ LANGUAGE_CODE }}" dir="{% if LANGUAGE_BIDI %}rtl{% else %}ltr{% endif %}">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>{% block branding_title %}Wagtail{% endblock %} - {% block titletag %}{% endblock %}</title>
|
|
<meta name="description" content="" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="robots" content="noindex" />
|
|
|
|
<script src="{% static 'wagtailadmin/js/vendor/modernizr-2.6.2.min.js' %}"></script>
|
|
|
|
<link rel="stylesheet" href="{% static 'wagtailadmin/css/normalize.css' %}" />
|
|
|
|
{% block css %}{% endblock %}
|
|
|
|
{% block branding_favicon %}{% endblock %}
|
|
</head>
|
|
<body id="wagtail" class="{% block bodyclass %}{% endblock %} {% if messages %}has-messages{% endif %} focus-outline-on">
|
|
<!--[if lt IE 9]>
|
|
<p class="capabilitymessage">{% blocktrans %}You are using an <strong>outdated</strong> browser not supported by this software. Please <a href="http://browsehappy.com/">upgrade your browser</a>.{% endblocktrans %}</p>
|
|
<![endif]-->
|
|
<noscript class="capabilitymessage">
|
|
{% blocktrans %}
|
|
Javascript is required to use Wagtail, but it is currently disabled.<br />
|
|
Here are the <a href="http://www.enable-javascript.com/" target="_blank" rel="noopener noreferrer">instructions how to enable JavaScript in your web browser</a>.
|
|
{% endblocktrans %}
|
|
</noscript>
|
|
|
|
{% block js %}{% endblock %}
|
|
|
|
<div class="wrapper">
|
|
{% block furniture %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|