mirror of
https://github.com/perstarkse/minne.git
synced 2026-02-24 09:04:50 +01:00
15 lines
371 B
HTML
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 %}
|