Search/templates/images.html

31 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>Image Search Results</title>
<link rel="stylesheet" href="/static/css/style.css">
</head>
<body>
<div class="search-results">
<h1>Image Search Results</h1>
{{ if .Results }}
<div class="images-grid">
{{ range .Results }}
<div class="image-item">
<a href="{{ .Source }}" target="_blank">
<img src="{{ .ThumbProxy }}" alt="{{ .Title }}" title="{{ .Title }}">
</a>
<div class="image-info">
<div class="image-title">{{ .Title }}</div>
<div class="image-source">Source: <a href="{{ .Source }}" target="_blank">Visit</a></div>
</div>
</div>
{{ end }}
</div>
{{ else }}
<div class="no-results">No results found for '{{ .Query }}'. Try different keywords.</div>
{{ end }}
</div>
</body>
</html>