pywb Sample Home Page
The following archive collections are available:
{% for route in routes %}
{% if route | is_wb_handler %}
- {{ '/' + route.path }}: {{ route | string }}
{% endif %}
{% endfor %}
Other endpoints in this deployment:
{% for route in routes %}
{% if not route | is_wb_handler %}
- {{ '/' + route.path }} - {{ route | string }}
{% endif %}
{% endfor %}