diff options
| author | frosty <gabriel@bwaaa.monster> | 2026-03-31 05:59:32 +0300 |
|---|---|---|
| committer | frosty <gabriel@bwaaa.monster> | 2026-03-31 06:03:57 +0300 |
| commit | 335b6f46837f3496467da50de2d9bce0c5ef6a1a (patch) | |
| tree | 6fda173cefd202e71795e3997ce27c10b9b7ff64 /templates | |
| parent | 71d3d0dcb0ffb171e9830ad8e92aef3c90291b7e (diff) | |
| download | omnisearch-335b6f46837f3496467da50de2d9bce0c5ef6a1a.tar.gz | |
feat: make clicking on logo in header bring you back to homepage
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/images.html | 4 | ||||
| -rw-r--r-- | templates/results.html | 4 | ||||
| -rw-r--r-- | templates/settings.html | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/templates/images.html b/templates/images.html index 92ab7b5..f2b5222 100644 --- a/templates/images.html +++ b/templates/images.html @@ -15,9 +15,9 @@ <body class="images-view"> <header> - <h1> + <a href="/" class="logo-link"><h1> Omni<span>Search</span> - </h1> + </h1></a> <form action="/images" method="GET" class="search-form"> <input name="q" autocomplete="off"="text" class="search-box" placeholder="Search for images..." value="{{query}}"> diff --git a/templates/results.html b/templates/results.html index 4128245..9dec20c 100644 --- a/templates/results.html +++ b/templates/results.html @@ -18,9 +18,9 @@ <body class="results-view"> <header> - <h1> + <a href="/" class="logo-link"><h1> Omni<span>Search</span> - </h1> + </h1></a> <form action="/search" method="GET" class="search-form"> <input name="engine" type="hidden" value="{{selected_engine}}"> <input name="q" type="text" class="search-box" autocomplete="off" placeholder="Search the web..." diff --git a/templates/settings.html b/templates/settings.html index e0030c2..8b79033 100644 --- a/templates/settings.html +++ b/templates/settings.html @@ -18,9 +18,9 @@ <body class="settings-view"> <header> - <h1> + <a href="/" class="logo-link"><h1> Omni<span>Search</span> - </h1> + </h1></a> {{if query != ""}} <form action="/search" method="GET" class="search-form"> <input name="q" type="text" class="search-box" autocomplete="off" placeholder="Search the web..." |
