diff --git a/arches/app/templates/index.htm b/arches/app/templates/index.htm index d65981e37b..829000cdf7 100644 --- a/arches/app/templates/index.htm +++ b/arches/app/templates/index.htm @@ -53,7 +53,7 @@ {% render_bundle 'css/index' 'css' %} {% render_bundle 'css/index-slider' 'css' %} - + {% if app_settings.ACCESSIBILITY_MODE %} {% render_bundle 'css/accessibility' 'css' %} {% endif %} @@ -81,7 +81,7 @@ {% trans 'Arches Logo' %}
-

{% blocktrans %}Arches | {{version}}{% endblocktrans %}

+

{% blocktrans %}{{app_name}} | {{version}}{% endblocktrans %}

@@ -169,7 +169,7 @@

{% blocktrans %}Arches | {{version}}{% endblocktrans %}

-

{% blocktrans %}Arches {{version}}{% endblocktrans %}

+

{% blocktrans %}{{app_name}} {{version}}{% endblocktrans %}

{% trans "A web and mobile platform for" %}

{% trans "managing your most important resource information" %}

@@ -178,7 +178,7 @@

{% blocktrans %}Arches {{version}}{% endblocktrans %}

-

{% blocktrans %}Arches {{version}}{% endblocktrans %}

+

{% blocktrans %}{{app_name}} {{version}}{% endblocktrans %}

{% trans "A web and mobile platform for" %}

{% trans "managing your most important resource information" %}

@@ -187,7 +187,7 @@

{% blocktrans %}Arches {{version}}{% endblocktrans %}

-

{% blocktrans %}Arches {{version}}{% endblocktrans %}

+

{% blocktrans %}{{app_name}} {{version}}{% endblocktrans %}

{% trans "A web and mobile platform for" %}

{% trans "managing your most important resource information" %}

@@ -485,7 +485,7 @@ ], function ($, ko) { $(document).ready(function () { App.init(); - + var contentSections = $('.app-info-block'), navigationItems = $('#cd-vertical-nav a'); @@ -546,4 +546,4 @@ - \ No newline at end of file + diff --git a/arches/app/views/main.py b/arches/app/views/main.py index 29800d2d18..f7eac8c1de 100644 --- a/arches/app/views/main.py +++ b/arches/app/views/main.py @@ -34,6 +34,7 @@ def index(request): "main_script": "index", "active_page": "Home", "app_title": settings.APP_TITLE, + "app_name": settings.APP_NAME, "copyright_text": settings.COPYRIGHT_TEXT, "copyright_year": settings.COPYRIGHT_YEAR, "app_version": settings.APP_VERSION,