mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-13 16:16:44 +02:00
23 lines
644 B
Plaintext
23 lines
644 B
Plaintext
---
|
|
layout: base.njk
|
|
title: KST4Contest English Manual
|
|
description: English user manual for KST4Contest.
|
|
---
|
|
|
|
<section class="hero">
|
|
<h1>English Manual</h1>
|
|
<p>The manual is maintained centrally in GitHub and published as Wiki, PDF and online documentation.</p>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<div class="grid">
|
|
{% for manual in collections.manualPages %}
|
|
{% if manual.lang == "en" %}
|
|
<div class="card">
|
|
<h3><a href="/manual/en/{{ manual.slug }}/">{{ manual.title }}</a></h3>
|
|
<p>Open the {{ manual.title }} manual page.</p>
|
|
</div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</section> |