diff options
| author | Julian Hurst <julian.hurst92@gmail.com> | 2020-10-16 10:25:35 +0200 |
|---|---|---|
| committer | Julian Hurst <julian.hurst92@gmail.com> | 2020-10-16 10:25:35 +0200 |
| commit | 5a1ed892243de630ebb0e145e7989193eab4bdb6 (patch) | |
| tree | 45b8b19434260f2ecb55d3af881abbff2e1c738a | |
| parent | 95389e0e9a62fe01c3c92edb30022913d60cf5b6 (diff) | |
| download | grimtube-5a1ed892243de630ebb0e145e7989193eab4bdb6.tar.gz | |
Add language combo to index
| -rw-r--r-- | templates/index.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html index 7628712..4b16728 100644 --- a/templates/index.html +++ b/templates/index.html @@ -2,5 +2,10 @@ {{define "content"}} <form action="/search" method="get"> <input id="term" name="term" type="text" placeholder="search" required> + <select id="lang" name="lang"> + <option>en</option> + <option>fr</option> + <option>de</option> + </select> </form> {{end}} |
