2024-03-27 21:30:19 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2024-03-28 11:52:16 +01:00
|
|
|
<title>{{.Query}} - Search Results</title>
|
2024-03-30 18:00:43 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="/static/css/style.css">
|
2024-03-27 21:30:19 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-03-30 18:00:43 +01:00
|
|
|
<div class="search-container">
|
|
|
|
<form action="/search" method="post" autocomplete="off">
|
|
|
|
<h1>TailsGo</h1>
|
|
|
|
<div class="wrapper">
|
|
|
|
<input type="text" name="q" value="{{ .Query }}" autofocus id="search-input" placeholder="Type to search..." />
|
|
|
|
<button id="search-wrapper-ico" class="material-icons-round" name="t" type="submit">search</button>
|
|
|
|
<!-- Include clear search icon if functionality is supported -->
|
|
|
|
</div>
|
|
|
|
<div class="search-button-wrapper">
|
|
|
|
<!-- Additional search options buttons if needed -->
|
|
|
|
</div>
|
|
|
|
</form>
|
2024-03-28 11:52:16 +01:00
|
|
|
</div>
|
2024-03-30 18:00:43 +01:00
|
|
|
<div class="results">
|
|
|
|
{{range .Results}}
|
|
|
|
<div class="result_item">
|
|
|
|
<a href="{{.URL}}"><h3>{{.Header}}</h3></a>
|
|
|
|
<p>{{.Description}}</p>
|
|
|
|
</div>
|
|
|
|
{{end}}
|
|
|
|
</div>
|
|
|
|
<!-- Additional content and structured elements go here -->
|
2024-03-27 21:30:19 +01:00
|
|
|
</body>
|
|
|
|
</html>
|