---
regenerate: false
permalink: /204.html
http_error: 204
sitemap: false
---
{% capture j1_cache %}
{% comment %}
# -----------------------------------------------------------------------------
# ~/assets/http_error_pages/HTTP204.html
# Liquid TEMPLATE to generate customized HTML error pages: 204 - No Content
# The request was successfull, but the answer does not contain any data
# for intentional reasons.
#
# Product/Info:
# https://jekyll.one
#
# Copyright (C) 2021 Juergen Adams
# Copyright (C) 2020 Andi Dittrich
#
# J1 Template is licensed under the MIT License.
# See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE
# HttpErrorPages are licensed under the MIT License.
# See: https://github.com/AndiDittrich/HttpErrorPages
# -----------------------------------------------------------------------------
# NOTE
# German translation, see: https://de.wikipedia.org/wiki/HTTP-Statuscode
# -----------------------------------------------------------------------------
# Test data:
# liquid_var: {{ liquid_var | debug }}
# config: {{ config | debug }}
# -----------------------------------------------------------------------------
{% endcomment %}
{% assign language = site.language %}
{% assign webmaster_email = site.webmaster.email %}
{% assign copyright_info = site.copyright %}
{% assign favicon = site.favicon.image %}
{% assign images_dir = site.asciidoc_attributes.imagesdir %}
{% assign brand_text = site.brand.text %}
{% assign brand_image_source = site.brand.image %}
{% assign brand_image_height = site.brand.image_height %}
{% capture brand_image %}{{images_dir}}/{{brand_image_source}}{% endcapture %}
{% if language != 'en' or language != 'de' %}
{% assign language = 'en' %}
{% endif %}
{% if language == 'en' %}
{% assign title = "No Content" %}
{% assign reason = "The request processed successfully.
This page has been disabled for technical reasons." %}
{% assign contact_issue = "Technical Contact" %}
{% endif %}
{% if language == 'de' %}
{% assign title = "Keine Daten" %}
{% assign reason = "Die Anfrage wurde erfolgreich durchgeführt.
. Diese Seite ist jedoch zurzeit aus technischen Gründen nicht verfügbar." %}
{% assign contact_issue = "Technischer Kontakt" %}
{% endif %}
{{reason}}