You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
721 B
27 lines
721 B
{% extends "main.html" %}
|
|
|
|
{% block title %} Home {% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
<p class="container d-flex justify-content-center">
|
|
<input id="search"
|
|
class="form-control"
|
|
type="search" name="q"
|
|
placeholder="Search"
|
|
aria-label="Search"
|
|
value='{{ query.search.as_deref().unwrap_or("") }}'
|
|
hx-get="/home/search"
|
|
hx-trigger="search, keyup delay:500ms changed"
|
|
hx-target="#items"
|
|
hx-push-url="true"
|
|
/>
|
|
</p>
|
|
|
|
<div id="items" class="container">
|
|
{% include "home_search_item_fragment.html" %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %} |