{% extends "base.html" %}

{% set active_tab = '' %}

{% block title %}Edit: {{ title }} - Second Brain{% endblock %}

{% block content_class %}browsing{% endblock %}

{% block actions %}
<a href="/wiki/{{ slug }}" class="topbar-btn">
    <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
        <path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/>
        <circle cx="12" cy="12" r="3"/>
    </svg>
</a>
{% endblock %}

{% block content %}
<div class="editor-page">
    <form class="editor-form" method="POST" action="/wiki/{{ slug }}/edit">
        <div class="editor-header">
            <h1>{{ title }}</h1>
            <button type="submit" class="btn btn-save">Save</button>
        </div>

        <div class="editor-content">
            <textarea name="content" id="editor" class="editor-textarea" placeholder="Enter Markdown content...">{{ content }}</textarea>
        </div>

        <div class="editor-footer">
            <p class="editor-help">
                <strong>Markdown:</strong> # Headings, **bold**, *italic*, [links](url), `code`, [[wikilinks]], tables, lists
            </p>
        </div>
    </form>
</div>
{% endblock %}