---
date: 2022-01-01 00:00:00
description: >
Customized HTML error page
categories: [ Error page ]
tags: [ HTML, 446 ]
exclude_from_search: true
regenerate: false
permalink: /447.html
http_error: 447
back_url: "https://support.mozilla.org/en-US/kb/trackers-and-scripts-firefox-blocks-enhanced-track"
sitemap: false
---
{% capture j1_cache %}
{% comment %}
# -----------------------------------------------------------------------------
# ~/assets/http_error_pages/HTTP446.html
# Liquid TEMPLATE to generate customized HTML error pages: 447 - Blocked Content
#
# Product/Info:
# https://jekyll.one
#
# Copyright (C) 2023 Juergen Adams
# Copyright (C) 2020 Andi Dittrich
#
# J1 Theme is licensed under the MIT License.
# See: https://github.com/jekyll-one-org/j1-template/blob/main/LICENSE.md
# 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 %}
{% comment %} language detection
-------------------------------------------------------------------------------- {% endcomment %}
{% if site.language == "en" %}
{% assign language = "en" %}
{% elsif site.language == "de"%}
{% assign language = "de" %}
{% else %}
{% assign language = "en" %}
{% endif %}
{% if language == 'en' %}
{% assign title = "Site Blocked" %}
{% assign back_url_text = "Back to J1 Theme (Home)" %}
{% assign reason = "Access to the site has been blocked for technical reasons.
Your browser is blocking tracking activity but that is necessary for the display of advertisements.
Advertisements are required to display pages on this website." %}
{% assign contact_issue = "Technical Contact" %}
{% endif %}
{% if language == 'de' %}
{% assign title = "Website gesperrt" %}
{% assign back_url_text = "Zurück zu J1 Theme (Home)" %}
{% assign reason = "Diese Webseiten sind aus technischen Gründen nicht verfügbar.
Ihr Browser blockiert Tracking-Aktivitäten, dies ist jedoch für die Anzeige Werbeeinblendungen erforderlich.
Werbeeinblendungen sind zum Anzeigen von Seiten dieser Website erforderlich." %}
{% assign contact_issue = "Technischer Kontakt" %}
{% endif %}