12 lines
316 B
HTML
12 lines
316 B
HTML
{% extends "simple/base.html" %}
|
|
{% from 'simple/icons.html' import icon_big %}
|
|
{% block content %}
|
|
<div class="index">
|
|
<div class="title">
|
|
{% include 'simple/logo.min.svg' without context %}
|
|
<h1>MeerkApp Search</h1>
|
|
</div>
|
|
{% include 'simple/simple_search.html' %}
|
|
</div>
|
|
{% endblock %}
|