v1.4.0: fix #43, #31, #29, #49, #33 + shared templating

This commit is contained in:
2026-05-20 20:08:25 +03:00
parent ca4d00c895
commit 64991f0228
63 changed files with 5005 additions and 45 deletions
+14
View File
@@ -0,0 +1,14 @@
{% extends "page.html" %}
{% block page_content %}
<div class="card">
<div class="card-header"><h2>Документация</h2></div>
{% if error %}<div class="alert alert-error">{{ error }}</div>{% endif %}
{% if docs %}
<div class="docs-list">{% for d in docs %}
<div class="doc-item"><a href="/service/documents/{{ d.filename | replace('.md', '') }}">{{ d.title }}</a></div>
{% endfor %}</div>
{% else %}
<div class="empty-state"><h3>Нет доступных документов</h3></div>
{% endif %}
</div>
{% endblock %}