mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-20 02:39:13 +01:00
* Refactor views class to support more Jinja2 views (J2Template) * Add a home page, collection search page, and error pages, all optional * all exceptions appear on error page * wbrequest supports a request with an empty or / wb_url
7 lines
332 B
HTML
7 lines
332 B
HTML
<h2>pywb Search Page</h2>
|
|
Search Archived Content:
|
|
<form onsubmit="url = document.getElementById('search').value; if (url != '') { document.location.href = '{{ wbrequest.wb_prefix }}' + '*/' + url; } return false;">
|
|
<input id="search" name="search" placeholder="Enter url to search"/>
|
|
<button type="submit">Search</button>
|
|
</form>
|