mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-14 00:26:52 +02:00
Add FAQ page with structured data
This commit is contained in:
@@ -30,6 +30,7 @@
|
|||||||
<a href="/screenshots/">Screenshots</a>
|
<a href="/screenshots/">Screenshots</a>
|
||||||
<a href="/news/">News</a>
|
<a href="/news/">News</a>
|
||||||
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
||||||
|
<a href="/faq/">FAQ</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,115 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>KST4Contest FAQ</title>
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="Frequently asked questions about KST4Contest, ON4KST contest operation, AirScout integration and VHF/UHF/SHF contest workflow.">
|
||||||
|
|
||||||
|
<link rel="canonical" href="https://kst4contest.hamradioonline.de/faq/">
|
||||||
|
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
<meta property="og:title" content="KST4Contest FAQ">
|
||||||
|
<meta property="og:description" content="Frequently asked questions about KST4Contest, ON4KST contest operation, AirScout integration and VHF/UHF/SHF contest workflow.">
|
||||||
|
<meta property="og:url" content="https://kst4contest.hamradioonline.de/faq/">
|
||||||
|
<meta property="og:site_name" content="KST4Contest">
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
|
<meta name="twitter:title" content="KST4Contest FAQ">
|
||||||
|
<meta name="twitter:description" content="Frequently asked questions about KST4Contest, ON4KST contest operation, AirScout integration and VHF/UHF/SHF contest workflow.">
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="/assets/css/main.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header class="site-header">
|
||||||
|
<a class="brand" href="/">KST4Contest</a>
|
||||||
|
<nav>
|
||||||
|
<a href="/features/">Features</a>
|
||||||
|
<a href="/download/">Download</a>
|
||||||
|
<a href="/manual/">Manual</a>
|
||||||
|
<a href="/screenshots/">Screenshots</a>
|
||||||
|
<a href="/news/">News</a>
|
||||||
|
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
||||||
|
<a href="/faq/">FAQ</a>
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<main>
|
||||||
|
|
||||||
|
<section class="hero">
|
||||||
|
<h1>Frequently asked questions</h1>
|
||||||
|
<p>
|
||||||
|
Answers about KST4Contest, ON4KST contest operation, downloads,
|
||||||
|
AirScout integration and supported platforms.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="section">
|
||||||
|
<div class="card">
|
||||||
|
<h2>What is KST4Contest?</h2>
|
||||||
|
<p>
|
||||||
|
KST4Contest is a contest-optimized ON4KST chat client for VHF, UHF and SHF ham radio contest operation.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2>Is KST4Contest a replacement for wtKST, KST2Me or KSTChat?</h2>
|
||||||
|
<p>
|
||||||
|
KST4Contest follows a different approach. It is focused on contest workflow, priority candidates,
|
||||||
|
sked handling, AirScout support, log synchronization and operator decision support.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2>Which platforms are supported?</h2>
|
||||||
|
<p>
|
||||||
|
KST4Contest provides release artifacts for Windows, Linux and macOS through GitHub Releases.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2>Does KST4Contest support AirScout?</h2>
|
||||||
|
<p>
|
||||||
|
Yes. KST4Contest is designed to integrate AirScout-related workflow information into contest operation.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2>Where can I download KST4Contest?</h2>
|
||||||
|
<p>
|
||||||
|
Official builds are available on the GitHub Releases page.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "FAQPage",
|
||||||
|
"mainEntity": [
|
||||||
|
{
|
||||||
|
"@type": "Question",
|
||||||
|
"name": "What is KST4Contest?",
|
||||||
|
"acceptedAnswer": {
|
||||||
|
"@type": "Answer",
|
||||||
|
"text": "KST4Contest is a contest-optimized ON4KST chat client for VHF, UHF and SHF ham radio contest operation."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "Question",
|
||||||
|
"name": "Is KST4Contest a replacement for wtKST, KST2Me or KSTChat?",
|
||||||
|
"acceptedAnswer": {
|
||||||
|
"@type": "Answer",
|
||||||
|
"text": "KST4Contest follows a different approach and focuses on contest workflow, priority candidates, sked handling, AirScout support, log synchronization and operator decision support."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "Question",
|
||||||
|
"name": "Which platforms are supported?",
|
||||||
|
"acceptedAnswer": {
|
||||||
|
"@type": "Answer",
|
||||||
|
"text": "KST4Contest provides release artifacts for Windows, Linux and macOS through GitHub Releases."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<footer class="site-footer">
|
||||||
|
<p>KST4Contest – ON4KST contest workflow for VHF/UHF/SHF operators.</p>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
@@ -30,6 +30,7 @@
|
|||||||
<a href="/screenshots/">Screenshots</a>
|
<a href="/screenshots/">Screenshots</a>
|
||||||
<a href="/news/">News</a>
|
<a href="/news/">News</a>
|
||||||
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
||||||
|
<a href="/faq/">FAQ</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,7 @@
|
|||||||
<a href="/screenshots/">Screenshots</a>
|
<a href="/screenshots/">Screenshots</a>
|
||||||
<a href="/news/">News</a>
|
<a href="/news/">News</a>
|
||||||
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
||||||
|
<a href="/faq/">FAQ</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,7 @@
|
|||||||
<a href="/screenshots/">Screenshots</a>
|
<a href="/screenshots/">Screenshots</a>
|
||||||
<a href="/news/">News</a>
|
<a href="/news/">News</a>
|
||||||
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
||||||
|
<a href="/faq/">FAQ</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,7 @@
|
|||||||
<a href="/screenshots/">Screenshots</a>
|
<a href="/screenshots/">Screenshots</a>
|
||||||
<a href="/news/">News</a>
|
<a href="/news/">News</a>
|
||||||
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
||||||
|
<a href="/faq/">FAQ</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,7 @@
|
|||||||
<a href="/screenshots/">Screenshots</a>
|
<a href="/screenshots/">Screenshots</a>
|
||||||
<a href="/news/">News</a>
|
<a href="/news/">News</a>
|
||||||
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
||||||
|
<a href="/faq/">FAQ</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,7 @@
|
|||||||
<a href="/screenshots/">Screenshots</a>
|
<a href="/screenshots/">Screenshots</a>
|
||||||
<a href="/news/">News</a>
|
<a href="/news/">News</a>
|
||||||
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
||||||
|
<a href="/faq/">FAQ</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,7 @@
|
|||||||
<a href="/screenshots/">Screenshots</a>
|
<a href="/screenshots/">Screenshots</a>
|
||||||
<a href="/news/">News</a>
|
<a href="/news/">News</a>
|
||||||
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
||||||
|
<a href="/faq/">FAQ</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,7 @@
|
|||||||
<a href="/screenshots/">Screenshots</a>
|
<a href="/screenshots/">Screenshots</a>
|
||||||
<a href="/news/">News</a>
|
<a href="/news/">News</a>
|
||||||
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
||||||
|
<a href="/faq/">FAQ</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,7 @@
|
|||||||
<a href="/screenshots/">Screenshots</a>
|
<a href="/screenshots/">Screenshots</a>
|
||||||
<a href="/news/">News</a>
|
<a href="/news/">News</a>
|
||||||
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
||||||
|
<a href="/faq/">FAQ</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|||||||
@@ -30,6 +30,7 @@
|
|||||||
<a href="/screenshots/">Screenshots</a>
|
<a href="/screenshots/">Screenshots</a>
|
||||||
<a href="/news/">News</a>
|
<a href="/news/">News</a>
|
||||||
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
||||||
|
<a href="/faq/">FAQ</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|||||||
@@ -33,4 +33,7 @@
|
|||||||
<url>
|
<url>
|
||||||
<loc>https://kst4contest.hamradioonline.de/news/</loc>
|
<loc>https://kst4contest.hamradioonline.de/news/</loc>
|
||||||
</url>
|
</url>
|
||||||
|
<url>
|
||||||
|
<loc>https://kst4contest.hamradioonline.de/faq/</loc>
|
||||||
|
</url>
|
||||||
</urlset>
|
</urlset>
|
||||||
@@ -30,6 +30,7 @@
|
|||||||
<a href="/screenshots/">Screenshots</a>
|
<a href="/screenshots/">Screenshots</a>
|
||||||
<a href="/news/">News</a>
|
<a href="/news/">News</a>
|
||||||
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
<a href="https://github.com/praktimarc/kst4contest">GitHub</a>
|
||||||
|
<a href="/faq/">FAQ</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
|
|||||||
@@ -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.
|
||||||
|
---
|
||||||
|
|
||||||
|
<section class="hero">
|
||||||
|
<h1>Frequently asked questions</h1>
|
||||||
|
<p>
|
||||||
|
Answers about KST4Contest, ON4KST contest operation, downloads,
|
||||||
|
AirScout integration and supported platforms.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<section class="section">
|
||||||
|
<div class="card">
|
||||||
|
<h2>What is KST4Contest?</h2>
|
||||||
|
<p>
|
||||||
|
KST4Contest is a contest-optimized ON4KST chat client for VHF, UHF and SHF ham radio contest operation.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2>Is KST4Contest a replacement for wtKST, KST2Me or KSTChat?</h2>
|
||||||
|
<p>
|
||||||
|
KST4Contest follows a different approach. It is focused on contest workflow, priority candidates,
|
||||||
|
sked handling, AirScout support, log synchronization and operator decision support.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2>Which platforms are supported?</h2>
|
||||||
|
<p>
|
||||||
|
KST4Contest provides release artifacts for Windows, Linux and macOS through GitHub Releases.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2>Does KST4Contest support AirScout?</h2>
|
||||||
|
<p>
|
||||||
|
Yes. KST4Contest is designed to integrate AirScout-related workflow information into contest operation.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<h2>Where can I download KST4Contest?</h2>
|
||||||
|
<p>
|
||||||
|
Official builds are available on the GitHub Releases page.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<script type="application/ld+json">
|
||||||
|
{
|
||||||
|
"@context": "https://schema.org",
|
||||||
|
"@type": "FAQPage",
|
||||||
|
"mainEntity": [
|
||||||
|
{
|
||||||
|
"@type": "Question",
|
||||||
|
"name": "What is KST4Contest?",
|
||||||
|
"acceptedAnswer": {
|
||||||
|
"@type": "Answer",
|
||||||
|
"text": "KST4Contest is a contest-optimized ON4KST chat client for VHF, UHF and SHF ham radio contest operation."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "Question",
|
||||||
|
"name": "Is KST4Contest a replacement for wtKST, KST2Me or KSTChat?",
|
||||||
|
"acceptedAnswer": {
|
||||||
|
"@type": "Answer",
|
||||||
|
"text": "KST4Contest follows a different approach and focuses on contest workflow, priority candidates, sked handling, AirScout support, log synchronization and operator decision support."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"@type": "Question",
|
||||||
|
"name": "Which platforms are supported?",
|
||||||
|
"acceptedAnswer": {
|
||||||
|
"@type": "Answer",
|
||||||
|
"text": "KST4Contest provides release artifacts for Windows, Linux and macOS through GitHub Releases."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
</script>
|
||||||
Reference in New Issue
Block a user