Просмотр исходного кода

Remove search-query id from 404 input.

Search query is propagated via the q parameter being added to the query
string when users hit enter.
The only reference to #search-query I found is for styling when dark
theme is enabled. The search widget on the page has the right background
color even when removing the id.
Alessandro Bahgat 6 лет назад
Родитель
Сommit
8665d90526
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      layouts/404.html

+ 1 - 1
layouts/404.html

@@ -7,7 +7,7 @@
   {{/* Show search box if Academic's search engine is enabled. */}}
   {{ if eq site.Params.search.engine 1 }}
   <form class="d-flex align-items-center mb-3">
-    <input name="q" type="search" class="form-control" id="search-query" placeholder="{{ i18n "search_placeholder" }}" autocomplete="off">
+    <input name="q" type="search" class="form-control" placeholder="{{ i18n "search_placeholder" }}" autocomplete="off">
   </form>
   {{ end }}