Files
kst4contest/website/src/manual/de/index.njk
T

23 lines
674 B
Plaintext

---
layout: base.njk
title: KST4Contest Deutsches Handbuch
description: Deutsches Benutzerhandbuch für KST4Contest.
---
<section class="hero">
<h1>Deutsches Handbuch</h1>
<p>Das Handbuch wird zentral in GitHub gepflegt und als Wiki, PDF und Online-Dokumentation veröffentlicht.</p>
</section>
<section class="section">
<div class="grid">
{% for manual in collections.manualPages %}
{% if manual.lang == "de" %}
<div class="card">
<h3><a href="/manual/de/{{ manual.slug }}/">{{ manual.title }}</a></h3>
<p>Handbuchseite „{{ manual.title }}“ öffnen.</p>
</div>
{% endif %}
{% endfor %}
</div>
</section>