Search/templates/results.html
2024-03-30 18:00:43 +01:00

33 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{.Query}} - Search Results</title>
<link rel="stylesheet" type="text/css" href="/static/css/style.css">
</head>
<body>
<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>
</div>
<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 -->
</body>
</html>