This commit is contained in:
Kamil
2024-11-22 12:29:29 +00:00
parent 4be8622bcd
commit 435f903b94
62 changed files with 3690 additions and 168 deletions

11
templates/search.html Normal file
View File

@@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block content %}
<div id="search-container">
{% if query %}
<h2>Search Results for "{{ query }}"</h2>
{% include 'partials/_searchresults.html' %}
{% else %}
<p>No search query provided.</p>
{% endif %}
</div>
{% endblock %}