From 006ee7b0601bbc226b671047ac35de40a7d3f40b Mon Sep 17 00:00:00 2001 From: Marc Froehlich Date: Mon, 6 Jul 2026 02:45:44 +0200 Subject: [PATCH] Add FAQ page with structured data --- website/_site/download/index.html | 1 + website/_site/faq/index.html | 115 ++++++++++++++++++ website/_site/features/airscout/index.html | 1 + website/_site/features/index.html | 1 + website/_site/features/log-sync/index.html | 1 + .../_site/features/priority-score/index.html | 1 + .../_site/features/sked-reminder/index.html | 1 + website/_site/index.html | 1 + website/_site/manual/en/index.html | 1 + website/_site/manual/index.html | 1 + website/_site/news/index.html | 1 + website/_site/screenshots/index.html | 1 + website/_site/sitemap.xml | 3 + website/src/_layouts/base.njk | 1 + website/src/faq/index.njk | 76 ++++++++++++ 15 files changed, 206 insertions(+) create mode 100644 website/_site/faq/index.html create mode 100644 website/src/faq/index.njk diff --git a/website/_site/download/index.html b/website/_site/download/index.html index d782d2b..0778569 100644 --- a/website/_site/download/index.html +++ b/website/_site/download/index.html @@ -30,6 +30,7 @@ Screenshots News GitHub + FAQ diff --git a/website/_site/faq/index.html b/website/_site/faq/index.html new file mode 100644 index 0000000..6a3c71f --- /dev/null +++ b/website/_site/faq/index.html @@ -0,0 +1,115 @@ + + + + + KST4Contest FAQ + + + + + + + + + + + + + + + + + + + + +
+ +
+

Frequently asked questions

+

+ Answers about KST4Contest, ON4KST contest operation, downloads, + AirScout integration and supported platforms. +

+
+ +
+
+

What is KST4Contest?

+

+ KST4Contest is a contest-optimized ON4KST chat client for VHF, UHF and SHF ham radio contest operation. +

+ +

Is KST4Contest a replacement for wtKST, KST2Me or KSTChat?

+

+ KST4Contest follows a different approach. It is focused on contest workflow, priority candidates, + sked handling, AirScout support, log synchronization and operator decision support. +

+ +

Which platforms are supported?

+

+ KST4Contest provides release artifacts for Windows, Linux and macOS through GitHub Releases. +

+ +

Does KST4Contest support AirScout?

+

+ Yes. KST4Contest is designed to integrate AirScout-related workflow information into contest operation. +

+ +

Where can I download KST4Contest?

+

+ Official builds are available on the GitHub Releases page. +

+
+
+ + +
+ + + + \ No newline at end of file diff --git a/website/_site/features/airscout/index.html b/website/_site/features/airscout/index.html index 5b2f775..4c93b57 100644 --- a/website/_site/features/airscout/index.html +++ b/website/_site/features/airscout/index.html @@ -30,6 +30,7 @@ Screenshots News GitHub + FAQ diff --git a/website/_site/features/index.html b/website/_site/features/index.html index b247c96..a6e9cc7 100644 --- a/website/_site/features/index.html +++ b/website/_site/features/index.html @@ -30,6 +30,7 @@ Screenshots News GitHub + FAQ diff --git a/website/_site/features/log-sync/index.html b/website/_site/features/log-sync/index.html index c4dbc49..e0d925b 100644 --- a/website/_site/features/log-sync/index.html +++ b/website/_site/features/log-sync/index.html @@ -30,6 +30,7 @@ Screenshots News GitHub + FAQ diff --git a/website/_site/features/priority-score/index.html b/website/_site/features/priority-score/index.html index 3ade1ec..0e7c2dd 100644 --- a/website/_site/features/priority-score/index.html +++ b/website/_site/features/priority-score/index.html @@ -30,6 +30,7 @@ Screenshots News GitHub + FAQ diff --git a/website/_site/features/sked-reminder/index.html b/website/_site/features/sked-reminder/index.html index 27290cf..f15da41 100644 --- a/website/_site/features/sked-reminder/index.html +++ b/website/_site/features/sked-reminder/index.html @@ -30,6 +30,7 @@ Screenshots News GitHub + FAQ diff --git a/website/_site/index.html b/website/_site/index.html index dac0097..255f88f 100644 --- a/website/_site/index.html +++ b/website/_site/index.html @@ -30,6 +30,7 @@ Screenshots News GitHub + FAQ diff --git a/website/_site/manual/en/index.html b/website/_site/manual/en/index.html index ecfbbe4..0e12588 100644 --- a/website/_site/manual/en/index.html +++ b/website/_site/manual/en/index.html @@ -30,6 +30,7 @@ Screenshots News GitHub + FAQ diff --git a/website/_site/manual/index.html b/website/_site/manual/index.html index 475d60a..30a0dac 100644 --- a/website/_site/manual/index.html +++ b/website/_site/manual/index.html @@ -30,6 +30,7 @@ Screenshots News GitHub + FAQ diff --git a/website/_site/news/index.html b/website/_site/news/index.html index c831810..4fd31aa 100644 --- a/website/_site/news/index.html +++ b/website/_site/news/index.html @@ -30,6 +30,7 @@ Screenshots News GitHub + FAQ diff --git a/website/_site/screenshots/index.html b/website/_site/screenshots/index.html index ba39b5a..846b225 100644 --- a/website/_site/screenshots/index.html +++ b/website/_site/screenshots/index.html @@ -30,6 +30,7 @@ Screenshots News GitHub + FAQ diff --git a/website/_site/sitemap.xml b/website/_site/sitemap.xml index 7b02f7f..eea8d3c 100644 --- a/website/_site/sitemap.xml +++ b/website/_site/sitemap.xml @@ -33,4 +33,7 @@ https://kst4contest.hamradioonline.de/news/ + + https://kst4contest.hamradioonline.de/faq/ + \ No newline at end of file diff --git a/website/src/_layouts/base.njk b/website/src/_layouts/base.njk index 2a93300..2b6d62a 100644 --- a/website/src/_layouts/base.njk +++ b/website/src/_layouts/base.njk @@ -30,6 +30,7 @@ Screenshots News GitHub + FAQ diff --git a/website/src/faq/index.njk b/website/src/faq/index.njk new file mode 100644 index 0000000..b05e873 --- /dev/null +++ b/website/src/faq/index.njk @@ -0,0 +1,76 @@ +--- +layout: base.njk +title: KST4Contest FAQ +description: Frequently asked questions about KST4Contest, ON4KST contest operation, AirScout integration and VHF/UHF/SHF contest workflow. +--- + +
+

Frequently asked questions

+

+ Answers about KST4Contest, ON4KST contest operation, downloads, + AirScout integration and supported platforms. +

+
+ +
+
+

What is KST4Contest?

+

+ KST4Contest is a contest-optimized ON4KST chat client for VHF, UHF and SHF ham radio contest operation. +

+ +

Is KST4Contest a replacement for wtKST, KST2Me or KSTChat?

+

+ KST4Contest follows a different approach. It is focused on contest workflow, priority candidates, + sked handling, AirScout support, log synchronization and operator decision support. +

+ +

Which platforms are supported?

+

+ KST4Contest provides release artifacts for Windows, Linux and macOS through GitHub Releases. +

+ +

Does KST4Contest support AirScout?

+

+ Yes. KST4Contest is designed to integrate AirScout-related workflow information into contest operation. +

+ +

Where can I download KST4Contest?

+

+ Official builds are available on the GitHub Releases page. +

+
+
+ + \ No newline at end of file