Move features to Markdown content model

This commit is contained in:
Marc Froehlich
2026-07-07 00:01:59 +02:00
parent 42255e2b41
commit 59aade8004
16 changed files with 316 additions and 178 deletions
+8 -8
View File
@@ -29,8 +29,8 @@ description: KST4Contest is a modern ON4KST chat client built for VHF, UHF and S
<div class="mock-grid">
{% for feature in features | slice(0, 6) %}
<div class="mini-card">
<strong>{{ feature.icon }} {{ feature.title }}</strong>
<small>{{ feature.summary }}</small>
<strong>{{ feature.data.icon }} {{ feature.data.title }}</strong>
<small>{{ feature.data.summary }}</small>
</div>
{% endfor %}
</div>
@@ -45,13 +45,13 @@ description: KST4Contest is a modern ON4KST chat client built for VHF, UHF and S
</div>
<div class="grid">
{% for feature in features %}
{% for feature in collections.features %}
<article class="card feature-card">
<div class="feature-icon">{{ feature.icon }}</div>
<p class="eyebrow">{{ feature.category }}</p>
<h3><a href="/features/{{ feature.slug }}/">{{ feature.title }}</a></h3>
<p>{{ feature.summary }}</p>
<a href="/features/{{ feature.slug }}/">Learn more →</a>
<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>