Upload files to "templates"

This commit is contained in:
2024-11-29 14:35:49 -05:00
parent 007ce3959d
commit 48463d414b
4 changed files with 114 additions and 143 deletions

View File

@ -0,0 +1,18 @@
{% extends "base.html" %}
{% block content %}
<h1>Search Results for "{{ query }}"</h1>
{% if results %}
<ul>
{% for result in results %}
<li>
<strong>{{ result.title }}</strong><br>
<p>{{ result.snippet }}</p>
</li>
{% endfor %}
</ul>
{% else %}
<p>No results found.</p>
{% endif %}
{% endblock %}