updated manual link and nav structure at the website

This commit is contained in:
Marc Froehlich
2026-08-10 02:08:11 +02:00
parent 8c3ff5f07c
commit cfbb978aee
4 changed files with 202 additions and 17 deletions
+22 -3
View File
@@ -5,14 +5,33 @@ pagination:
alias: manual
permalink: "/manual/{{ manual.lang }}/{{ manual.slug }}/"
layout: base.njk
lang: "{{ manual.lang }}"
title: "{{ manual.title }} | KST4Contest Manual"
description: "KST4Contest manual page: {{ manual.title }}"
description: "{{ manual.summary }}"
---
<section class="section">
<div class="card manual-content">
<p><a href="/manual/{{ manual.lang }}/">← Back to manual overview</a></p>
<h1>{{ manual.title }}</h1>
{% if manual.lang == "de" %}
<p>
<a href="/manual/de/">← Zurück zur deutschen Handbuchübersicht</a>
</p>
{% else %}
<p>
<a href="/manual/en/">← Back to the English manual overview</a>
</p>
{% endif %}
{{ manual.content | markdown | safe }}
{% if manual.lang == "de" %}
<p>
<a href="/manual/de/">← Zurück zur deutschen Handbuchübersicht</a>
</p>
{% else %}
<p>
<a href="/manual/en/">← Back to the English manual overview</a>
</p>
{% endif %}
</div>
</section>