feat: implement Phase 2 (Pulse, Admin, RC2)

This commit is contained in:
2025-12-08 21:00:23 +01:00
parent 78620d8f8a
commit 96754a1d1a
23 changed files with 1415 additions and 27 deletions

View File

@@ -0,0 +1,29 @@
{% extends "base.html" %}
{% block title %}{{ page_title }}{% endblock %}
{% block content %}
<main class="container">
<hgroup>
<h1>📚 Dokumentation</h1>
<p>Startfiles und Handbücher direkt im Browser lesen.</p>
</hgroup>
<div class="grid">
{% for doc in docs %}
<article>
<header>📄 {{ doc.name }}</header>
<p><code>{{ doc.file }}</code></p>
<footer>
<a href="/docs/{{ doc.file }}" role="button" class="outline">Lesen →</a>
</footer>
</article>
{% else %}
<p>Keine Dokumentation gefunden. 🤷‍♂️</p>
{% endfor %}
</div>
<hr>
<p><small>Hinweis: Diese Dateien liegen im Root-Verzeichnis des Servers.</small></p>
</main>
{% endblock %}