Implement new search UI
We now have both autocomplete-based searching for quick results, as well as a full search page for a full listing of results
This commit is contained in:
parent
8b148bf1d4
commit
e9ffe0e27b
23 changed files with 649 additions and 393 deletions
|
@ -98,6 +98,7 @@ def aci_signing_key():
|
|||
|
||||
return send_file(signer.open_public_key_file(), mimetype=PGP_KEY_MIMETYPE)
|
||||
|
||||
|
||||
@web.route('/plans/')
|
||||
@no_cache
|
||||
@route_show_if(features.BILLING)
|
||||
|
@ -105,6 +106,12 @@ def plans():
|
|||
return index('')
|
||||
|
||||
|
||||
@web.route('/search')
|
||||
@no_cache
|
||||
def search():
|
||||
return index('')
|
||||
|
||||
|
||||
@web.route('/guide/')
|
||||
@no_cache
|
||||
def guide():
|
||||
|
|
Reference in a new issue