mirror of
https://github.com/perstarkse/minne.git
synced 2026-03-21 00:49:54 +01:00
18 lines
523 B
HTML
18 lines
523 B
HTML
{% extends "body_base.html" %}
|
|
|
|
{% block title %}Minne - Search{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="flex justify-center grow mt-2 sm:mt-4">
|
|
<div class="container">
|
|
<section class="mb-4">
|
|
<div class="nb-panel p-3 flex items-center justify-between">
|
|
<h1 class="text-xl font-extrabold tracking-tight">Search</h1>
|
|
<div class="text-xs opacity-70">Find documents, entities, and snippets</div>
|
|
</div>
|
|
</section>
|
|
{% include "search/response.html" %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|