mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-09-11 19:55:40 +02:00
23 lines
674 B
Plaintext
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> |