diff options
Diffstat (limited to 'templates/image.hbs')
| -rw-r--r-- | templates/image.hbs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/image.hbs b/templates/image.hbs index fab65d5..ae24f06 100644 --- a/templates/image.hbs +++ b/templates/image.hbs @@ -17,7 +17,7 @@ <section id="search"> <h2>Search</h2> <form id="search-box" method="GET" action="/posts"> - <input id="tags" name="tags" type="text" autocomplete="off"> + <input id="tags" name="query" type="text" autocomplete="off"> <button id="search-box-submit" type="submit">Search</button> </form> </section> @@ -26,7 +26,7 @@ <h2>Tags</h2> <ul> {{#each tags}} - <li><a href="/posts?tags={{ . }}">{{ . }}</a></li> + <li><a href="/posts?query={{ . }}">{{ . }}</a></li> {{/each}} </ul> |