mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-22 14:24:27 +01:00
update README and INSTALL, fix typo only list wb handlers on home page by default pep8 fixes
12 lines
273 B
HTML
12 lines
273 B
HTML
<h2>pywb Sample Home Page</h2>
|
|
|
|
The following archive collections are available:
|
|
|
|
<ul>
|
|
{% for route in routes %}
|
|
{% if route | is_wb_handler %}
|
|
<li><a href="{{ '/' + route.path }}">{{ '/' + route.path }}</a>: {{ route | string }}</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|