1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-04-01 03:31:27 +02:00
pywb/pywb/ui/index.html

12 lines
273 B
HTML
Raw Normal View History

<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>