Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added docs/assets/social.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 0 additions & 5 deletions docs/de/index.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
---
title: Journalistische Neutralität
description: Der News Deframer erkennt journalistische Neutralität und Framing in Nachrichtenartikeln mithilfe von LLMs.
---

# News Deframer

Der "News Deframer" ist ein sprachliches Analysetool, für alle Ihre präferierten Nachrichtenseiten. Mit Hilfe von LLMs analysiert es die Nachrichten Schlagzeilen. Die Anwendung besitzt zwei Verwendungsmöglichkeiten: einen **RSS-Feed-Proxy** und ein **Browser-Plugin**.
Expand Down
5 changes: 2 additions & 3 deletions docs/en/index.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
---
<!-- ---
title: Journalistic neutrality analysis
description: News Deframer will detect journalistic neutrality and framing in news articles by using LLMs.
---

--- -->
# News Deframer

News Deframer will detect journalistic neutrality and framing in news articles. By leveraging Large Language Models (LLMs), it analyzes the news headlines. It can act as an **RSS Feed Proxy** or as a **browser plugin**.
Expand Down
10 changes: 5 additions & 5 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ plugins:
copyright: Copyright &copy; 2026
- search
- glightbox
- social:
cards_layout_options:
# background_color: "#000000"
# color: "#ffffff"
font_family: Roboto
# - social:
# cards_layout_options:
# # background_color: "#000000"
# # color: "#ffffff"
# font_family: Roboto

extra_javascript:
- js/language-detect.js
Expand Down
16 changes: 16 additions & 0 deletions overrides/main.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{% extends "base.html" %}

{% block extrahead %}
<meta property="og:type" content="website" />
<meta property="og:title" content="{{ page.title }} - {{ config.site_name }}" />
<meta property="og:description" content="{{ config.site_description }}" />
<meta property="og:url" content="{{ page.canonical_url }}" />
<meta property="og:image" content="{{ config.site_url }}assets/social.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="{{ page.title }} - {{ config.site_name }}" />
<meta name="twitter:description" content="{{ config.site_description }}" />
<meta name="twitter:image" content="{{ config.site_url }}assets/social.png" />
{% endblock %}