diff --git a/website/_site/screenshots/index.html b/website/_site/screenshots/index.html
index c68b425..a646eaa 100644
--- a/website/_site/screenshots/index.html
+++ b/website/_site/screenshots/index.html
@@ -17,7 +17,7 @@
-
+
diff --git a/website/_site/sitemap.xml b/website/_site/sitemap.xml
index c95ee34..0b9d74d 100644
--- a/website/_site/sitemap.xml
+++ b/website/_site/sitemap.xml
@@ -18,9 +18,6 @@
https://kst4contest.hamradioonline.de/screenshots/
-
- https://kst4contest.hamradioonline.de/news/
- https://kst4contest.hamradioonline.de/faq/
@@ -54,4 +51,7 @@
https://kst4contest.hamradioonline.de/features/macros/
+
+ https://kst4contest.hamradioonline.de/news/2026-07-website-launch/
+
\ No newline at end of file
diff --git a/website/src/_layouts/news-post.njk b/website/src/_layouts/news-post.njk
new file mode 100644
index 0000000..222503b
--- /dev/null
+++ b/website/src/_layouts/news-post.njk
@@ -0,0 +1,15 @@
+---
+layout: base.njk
+---
+
+
+
News · {{ date | readableDate }}
+
{{ title }}
+
{{ summary }}
+
+
+
+
+ {{ content | safe }}
+
+
\ No newline at end of file
diff --git a/website/src/news/2026-07-website-launch.md b/website/src/news/2026-07-website-launch.md
new file mode 100644
index 0000000..480acc8
--- /dev/null
+++ b/website/src/news/2026-07-website-launch.md
@@ -0,0 +1,17 @@
+---
+title: KST4Contest Website Launch
+summary: The new KST4Contest website is being built as a static, SEO-friendly product portal with GitHub-based documentation.
+date: 2026-07-07
+---
+
+## A new home for KST4Contest
+
+KST4Contest now has its own website at `kst4contest.hamradioonline.de`.
+
+The site is built with Eleventy, generated from version-controlled Markdown and deployed as a fast static website.
+
+## Why this matters
+
+The goal is to make KST4Contest easier to discover, easier to document and easier to maintain.
+
+Documentation, release information, feature pages and future updates can now grow from a shared content model.
\ No newline at end of file
diff --git a/website/src/news/index.njk b/website/src/news/index.njk
index 44ecb35..982bb69 100644
--- a/website/src/news/index.njk
+++ b/website/src/news/index.njk
@@ -2,21 +2,26 @@
layout: base.njk
title: KST4Contest News
description: News, release updates and development notes for KST4Contest.
+eleventyExcludeFromCollections: true
---
-
News
-
- Release notes, development updates and contest workflow improvements.
+
News
+
Development updates and release notes.
+
+ Updates about KST4Contest releases, website improvements and contest workflow development.
-
-
Website launch
-
- The new KST4Contest website is being built as a static, SEO-friendly product site
- with GitHub-based documentation and automated deployment.
-
+
+ {% for post in collections.news | reverse %}
+
+
\ No newline at end of file
diff --git a/website/src/news/news.json b/website/src/news/news.json
new file mode 100644
index 0000000..a114996
--- /dev/null
+++ b/website/src/news/news.json
@@ -0,0 +1,4 @@
+{
+ "layout": "news-post.njk",
+ "tags": "news"
+}
\ No newline at end of file