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.
 
 
 
 
 

22 lines
494 B

{% extends 'base.html' %}
{% block content %}
<div class="container-xl">
<h2>Search Results for "{{ query }}"</h2>
{% if songs %}
<ul>
{% for song in songs %}
<li>
<a href="{{ url_for('paginas.song', song_id=song.id) }}">{{ song.title }} by {{ song.author }}</a>
</li>
{% endfor %}
</ul>
{% else %}
<p>No songs found matching your query.</p>
{% endif %}
<a href="{{ url_for('paginas.index') }}">Back to Home</a>
</div>
{% endblock %}