Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
378 B
HTML
Raw Normal View History

{% extends "templates/web.html" %}
{% block title %}{{ _('Search') }}{% endblock %}
2021-04-22 14:21:29 +05:30
{%- block head_include %}
<link rel="stylesheet" href="search.css">
{% endblock -%}
{% block header %}
<div class="mb-6">{{ _('Search Products') }}</div>
{% endblock header %}
{% block page_content %}
<input type="text" name="query" id="search-box">
<ul id="results">
</ul>
{% endblock %}