umap/umap/templates/base.html
2023-06-20 10:00:02 -04:00

30 lines
968 B
HTML

{% load compress umap_tags i18n %}
<!DOCTYPE html>
<html {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
<head>
<title>
{% block head_title %}
{{ SITE_NAME }}
{% endblock head_title %}
</title>
<meta charset="utf-8">
<meta name="description"
content="{% trans "uMap lets you create maps with OpenStreetMap layers in a minute and embed them in your site." %}">
<meta name="keywords" content="map, umap">
{% block extra_head %}
{% endblock extra_head %}
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
</head>
<body class="{% block body_class %}{% endblock body_class %}">
{% block header %}
{% endblock header %}
{% block content %}
{% endblock content %}
{% block bottom_js %}
{% endblock bottom_js %}
{% block footer %}
{% include "umap/footer.html" %}
{% endblock footer %}
</body>
</html>