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.
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
{% block content %}
|
|
|
<div class="container-xl">
|
|
|
|
|
|
<h2>Search Results for "{{ query }}"</h2>
|
|
|
|
|
|
{% if recetas %}
|
|
|
<ul>
|
|
|
{% for receta in recetas %}
|
|
|
<li>
|
|
|
<a href="{{ url_for('paginas.receta', receta_id=receta.id) }}">{{ receta.title }}</a>
|
|
|
</li>
|
|
|
{% endfor %}
|
|
|
</ul>
|
|
|
{% else %}
|
|
|
<p>No recetas found matching your query.</p>
|
|
|
{% endif %}
|
|
|
|
|
|
<a href="{{ url_for('paginas.index') }}">Back to Home</a>
|
|
|
</div>
|
|
|
{% endblock %}
|