Skip to content
Snippets Groups Projects
Commit d84ebf26 authored by chbaeh's avatar chbaeh
Browse files

ODPSH-293: add error text

parent 8051c22c
No related branches found
No related tags found
No related merge requests found
......@@ -1920,3 +1920,25 @@ p.package-info-categorie
{
color: #003064;
}
.error-title
{
color: #003064;
font-size: 40px;
margin-left: 10px;
}
.error-body
{
color: black;
font-size: 18px;
}
.error-body h3
{
font-size: 18px;
font-weight: 600;
}
.error-body a{
color: #003064;
}
\ No newline at end of file
{% extends "page.html" %}
{% block subtitle %}{{ gettext('Error %(error_code)s', error_code=c.code[0]) }}{% endblock %}
{% block primary %}
<article class="module">
<div class="module-content error-page">
<div class="error-title">
HTTP Status {{ c.code[0]}}
{%if c.code[0]=='404'%}
<div class="error-body"><h2>Seite nicht gefunden</h2>
<h3>Wie finde ich die gesuchten Inhalte im Landesportal?</h3>
<p><a class="" href="http://www.schleswig-holstein.de/odpstart" title="Zur Startseite">Zur Startseite des Open-Data-Portals</a></p>
<h3>Kontakt</h3>
<p>Bei Fragen oder Problemen mit dem Open-Data-Portal schicken Sie bitte eine E-Mail an die Adresse opendata@lr.landsh.de oder verwenden das Kontaktformular:</p>
<p><a class="" href="https://www.schleswig-holstein.de/odpkontakt" title="Kontakt">Zum Kontaktformular</a></p>
</div>
{% endif %}
</div>
</div>
</article>
{% endblock %}
{% block breadcrumb %}
{% endblock %}
{% block flash %}
{# eat the flash messages caused by the 404 #}
{% set flash_messages = h.flash.pop_messages() %}
{% endblock %}
{% block secondary %}{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment