mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-14 00:26:52 +02:00
Move features to Markdown content model
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user