{% extends 'index.html' %} {% load i18n %} {% load site_base_tags %} {% comment %} This is where you can override the hero area block. You can simply modify the content below or replace it wholesale to meet your own needs. {% endcomment %} {% block hero %}

{% trans "Welcome" %}

{% blocktrans %}GeoNode is an open source platform for sharing geospatial data and maps.{% endblocktrans %}

{% blocktrans %}If you have any questions about the software or service, join our mailing list.{% endblocktrans %}

{% trans 'Need help?' %} {% trans 'Getting Started' %}
{% endblock %} {% block mainbody %}
{% with facet_type='home' %} {% site_facets as facets %}

{{ facets.layer|default:_("No") }} {% blocktrans count counter=facets.layer %}Layer{% plural %}Layers{% endblocktrans %}

{% trans "Click to search for geospatial data published by other users, organizations and public sources. Download data in standard formats." %}

{% if user.is_authenticated %}

{% trans "Add layers" %} »

{% else %}

{% trans "Explore layers" %} »

{% endif %}

{{ facets.map|default:_("No") }} {% blocktrans count counter=facets.map %}Map{% plural %}Maps{% endblocktrans %}

{% trans "Data is available for browsing, aggregating and styling to generate maps which can be shared publicly or restricted to specific users only." %}

{% if user.is_authenticated %}

{% trans "Create maps" %} »

{% else %}

{% trans "Explore maps" %} »

{% endif %}

{{ facets.user|default:_("No") }} {% blocktrans count counter=facets.user %}User{% plural %}Users{% endblocktrans %}

{% trans "GeoNode allows registered users to easily upload geospatial data in several formats including shapefile and GeoTiff." %}

{% trans "See users" %} »

{% endwith %}
{% verbatim %}
{% endverbatim %} {% endblock %}