mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-13 16:16:44 +02:00
28 lines
903 B
Plaintext
28 lines
903 B
Plaintext
---
|
|
layout: base.njk
|
|
title: KST4Contest Features
|
|
description: Contest-optimized ON4KST features for VHF, UHF and SHF operation.
|
|
---
|
|
|
|
<section class="hero">
|
|
<p class="badge">Features</p>
|
|
<h1>Contest tools, not just chat windows.</h1>
|
|
<p class="lead">
|
|
KST4Contest combines ON4KST chat, candidate scoring, AirScout workflow,
|
|
sked handling, log synchronization and operator decision support.
|
|
</p>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="grid">
|
|
{% for feature in collections.features %}
|
|
<article class="card feature-card">
|
|
<div class="feature-icon">{{ feature.data.icon }}</div>
|
|
<p class="eyebrow">{{ feature.data.category }}</p>
|
|
<h3><a href="{{ feature.url }}">{{ feature.data.title }}</a></h3>
|
|
<p>{{ feature.data.summary }}</p>
|
|
<a href="{{ feature.url }}">Learn more →</a>
|
|
</article>
|
|
{% endfor %}
|
|
</div>
|
|
</section> |