--- 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, 2024 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/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 = "Show info page" %} {% assign reason = "Access to the site has been blocked for technical reasons.
Your browser is blocking tracking activity but that is necessary to display advertisements.
Advertisements are required to display this page." %} {% assign contact_issue = "Technical Contact" %} {% endif %} {% if language == 'de' %} {% assign title = "Website gesperrt" %} {% assign back_url_text = "Anzeige der Informations Seite" %} {% assign reason = "Diese Webseite 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 zur Anzeige dieser Seite erforderlich." %} {% assign contact_issue = "Technischer Kontakt" %} {% endif %} {{title}} · {{page.http_error}}
{{brand_text}}

{{title}} {{page.http_error}}

{{reason}}

{{back_url_text}}
{%- endcapture -%} {{ j1_cache | strip_empty_lines }} {% assign j1_cache = nil %}