mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-08-31 22:56:54 +00:00
39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
{{ define "search" }}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Search: {{ .SearchQuery }} - ATCR</title>
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
<script src="https://unpkg.com/htmx.org@1.9.10"></script>
|
|
</head>
|
|
<body>
|
|
{{ template "nav" . }}
|
|
|
|
<main class="container">
|
|
<div class="home-page">
|
|
{{ if .SearchQuery }}
|
|
<h1>Search Results for "{{ .SearchQuery }}"</h1>
|
|
{{ else }}
|
|
<h1>Search</h1>
|
|
<p>Enter a search term to find images.</p>
|
|
{{ end }}
|
|
|
|
<div id="push-list" hx-get="/api/search-results?q={{ .SearchQuery }}" hx-trigger="load" hx-swap="innerHTML">
|
|
<!-- Initial loading state -->
|
|
{{ if .SearchQuery }}
|
|
<div class="loading">Searching...</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<!-- Modal container for HTMX -->
|
|
<div id="modal"></div>
|
|
|
|
<script src="/static/js/app.js"></script>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|