forked from geosolutions-it/geonode-mapstore-client
-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
44 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,44 @@ | ||
{% load static %} | ||
{% load client_version %} | ||
<!DOCTYPE html> | ||
<html class="msgapi"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet"> | ||
<link href="{% static 'mapstore/dist/themes/geonode.css' %}?{% client_version %}" rel="stylesheet" /> | ||
<title>{{ SITE_NAME }}</title> | ||
<link rel="shortcut icon" href="{% static 'geonode/img/favicon.ico' %}" /> | ||
{% include './geonode-mapstore-client/snippets/loader_style.html' %} | ||
|
||
{% block custom_theme %} | ||
{% include './geonode-mapstore-client/snippets/custom_theme.html' %} | ||
{% endblock %} | ||
|
||
{% block extra_style %} | ||
{% endblock %} | ||
</head> | ||
<body class="gn-theme gn-theme-light gn-homepage ms2"> | ||
{% include './geonode-mapstore-client/_geonode_config.html' %} | ||
{% block header %} | ||
{% include './geonode-mapstore-client/snippets/header.html' %} | ||
{% endblock %} | ||
|
||
{% block container %} | ||
{% endblock %} | ||
|
||
{% block footer %} | ||
{% include './geonode-mapstore-client/snippets/footer.html' %} | ||
{% endblock %} | ||
|
||
{% block scripts %} | ||
<script src="{% static "lib/js/jquery.min.js" %}"></script> | ||
<script src="{% static "lib/js/bootstrap.min.js" %}"></script> | ||
<script type="text/javascript"> | ||
// enable dropdown functionalities | ||
$('.dropdown-toggle').dropdown(); | ||
</script> | ||
{% endblock %} | ||
</body> | ||
</html> |