Spaces:
Sleeping
Sleeping
File size: 1,597 Bytes
b9fc211 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search Results</title>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
h1 {
font-size: 24px;
color: blue;
margin-bottom: 20px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
a {
color: black; /* Set link color to black */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#backLink {
margin-top: 20px;
display: inline-block;
padding: 10px 20px;
background-color: #007bff; /* Button background color */
color: white; /* Button text color */
text-decoration: none;
border-radius: 5px;
}
#backLink:hover {
background-color: #0056b3; /* Hover color for the button */
}
</style>
</head>
<body>
<h1>Search Results for "{{ query }}"</h1>
<ul>
{% for link in youtube_links %}
<li><a href="{{ link }}" target="_blank">{{ link }}</a></li>
{% endfor %}
</ul>
<!-- Back button linking to the index page -->
<a href="/" id="backLink">Back to Search</a>
</body>
</html>
|