{% extends "base.html" %} {% block title %}{{ page.title or page.slug }} — Wiki — ABREKA{% endblock %} {% block breadcrumb %} {% endblock %} {% block extra_css %} .wiki-meta { color: var(--muted); font-size: 13px; margin-bottom: 12px; } .wiki-meta strong { color: var(--text); } .wiki-form { display: grid; gap: 8px; } .wiki-form input, .wiki-form textarea { width: 100%; padding: 8px 10px; border: 1px solid var(--border); border-radius: 5px; font-size: 13px; background: var(--surface); color: var(--text); font-family: var(--font); } .wiki-form textarea { font-family: var(--mono); min-height: 320px; resize: vertical; } .danger-zone { border: 1px dashed #fecaca; background: #fef2f2; } {% endblock %} {% block content %}
abreka/wiki/pages/{{ page.slug }}.md

{{ page.title or page.slug }}

slug: {{ page.slug }}  ·  tags: {{ page.tags | join(', ') if page.tags else "—" }} {% if page.summary %}
summary: {{ page.summary }}{% endif %}
updated: {{ page.updated_at.isoformat() }} {% if page.updated_by_exp %} · by exp: {{ page.updated_by_exp }}{% endif %} {% if page.created_by_exp %} · created by exp: {{ page.created_by_exp }}{% endif %}
{{ page.body | md }}
Double-click anywhere above to edit.

Danger Zone

Deletion is permanent. Agents cannot run this; only humans can.

{% endblock %}