mirror of
https://github.com/perstarkse/minne.git
synced 2026-03-17 23:14:08 +01:00
19 lines
434 B
HTML
19 lines
434 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">
|
|
{% block search_header %}
|
|
{% endblock %}
|
|
</div>
|
|
</section>
|
|
{% block search_results %}
|
|
{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|