Search/templates/results.html

34 lines
1.2 KiB
HTML
Raw Normal View History

2024-03-27 20:30:19 +00: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 10:52:16 +00:00
<title>{{.Query}} - Search Results</title>
2024-03-30 17:00:43 +00:00
<link rel="stylesheet" type="text/css" href="/static/css/style.css">
2024-03-27 20:30:19 +00:00
</head>
<body>
2024-03-30 17:00:43 +00: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 10:52:16 +00:00
</div>
2024-03-30 17:00:43 +00: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 20:30:19 +00:00
</body>
</html>