mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-20 18:59:11 +01:00
* Reworked query.js to know the difference between date search and advanced searching. Exposed cdx api's through the query html page - from, to - matchType - filter Added more appealing styling to the error, index, not-found, query, and search templates Updated the included jquery and boostrap static files to jQuery v3.3.1, Bootstrap v4.1.3 Implemented optionally using a web worker for making the cdx api request and processing the results Documented the code * ensure the display count str function uses the correct "first" value * added view all captures for an result displayed in the advanced results view query worker now sends over the recordCount as an integer and as a formatted string moved the search button to the right after advanced options * tests: fixed test_intergration.py:test_static_nested_dir failing due to updates
28 lines
933 B
HTML
28 lines
933 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8;charset=utf-8">
|
|
<title>URL Not Found</title>
|
|
<link rel="stylesheet" href="{{ static_prefix }}/css/bootstrap.min.css">
|
|
<script src="{{ static_prefix }}/js/jquery-latest.min.js"></script>
|
|
<script src="{{ static_prefix }}/js/bootstrap.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<h2 class="display-2">URL Not Found</h2>
|
|
<p class="lead">
|
|
The url <b>{{ url }}</b> could not be found in this collection.
|
|
</p>
|
|
{% if wbrequest and wbrequest.env.pywb_proxy_magic and url %}
|
|
<p>
|
|
<a href="//select.{{ wbrequest and wbrequest.env.pywb_proxy_magic }}/{{ url }}">
|
|
Try Different Collection
|
|
</a>
|
|
</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|