mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-19 18:29:37 +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
10 lines
226 B
HTML
10 lines
226 B
HTML
<h2>pywb Sample Home Page</h2>
|
|
|
|
The following archive collections are available:
|
|
|
|
<ul>
|
|
{% for route in routes %}
|
|
<li><a href="{{ '/' + route.path }}">{{ '/' + route.path }}</a>: {{ route | string }}</li>
|
|
{% endfor %}
|
|
</ul>
|