Files
minne/html-router/templates/chat/base.html
Per Stark 354dc727c1 refactor: extendable templates
refactor: simplification

refactor: simplification
2026-01-13 22:18:00 +01:00

15 lines
371 B
HTML

{% extends "chat/_layout.html" %}
{% block chat_header_actions %}
<h1 class="text-xl font-extrabold tracking-tight">Chat</h1>
<div class="text-xs opacity-70">Converse with your knowledge</div>
{% endblock %}
{% block chat_content %}
{% include "chat/history.html" %}
{% endblock %}
{% block overlay %}
{% include "chat/new_message_form.html" %}
{% endblock %}